mirror of
https://github.com/grokability/snipe-it.git
synced 2026-03-12 17:52:00 +08:00
25 lines
540 B
PHP
25 lines
540 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class CheckoutablesCheckedOutInBulk
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
public function __construct(
|
|
public Collection $assets,
|
|
public Model $target,
|
|
public User $admin,
|
|
public string $checkout_at,
|
|
public string $expected_checkin,
|
|
public string $note,
|
|
) {
|
|
}
|
|
}
|