3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-02 05:52:33 +00:00
Files
snipe-it/app/Events/CheckoutablesCheckedOutInBulk.php
2026-03-13 16:25:59 +00:00

24 lines
535 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,
) {}
}