snipe-it/app/Events/ConsumableCheckedOut.php

33 lines
722 B
PHP
Raw Normal View History

2018-07-21 05:01:30 -07:00
<?php
namespace App\Events;
use App\Models\Actionlog;
use App\Models\Consumable;
use App\Models\User;
use Illuminate\Broadcasting\Channel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ConsumableCheckedOut
{
use Dispatchable, SerializesModels;
public $consumable;
public $checkedOutTo;
public $logEntry;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Consumable $consumable, $checkedOutTo, User $checkedOutBy, $note)
2018-07-21 05:01:30 -07:00
{
$this->consumable = $consumable;
$this->checkedOutTo = $checkedOutTo;
$this->checkedOutBy = $checkedOutBy;
$this->note = $note;
2018-07-21 05:01:30 -07:00
}
}