Akaunting/app/Events/Common/ItemDeleted.php

21 lines
277 B
PHP

<?php
namespace App\Events\Common;
use App\Abstracts\Event;
class ItemDeleted extends Event
{
public $item;
/**
* Create a new event instance.
*
* @param $item
*/
public function __construct($item)
{
$this->item = $item;
}
}