Akaunting/app/Events/Common/ItemDeleting.php

21 lines
278 B
PHP

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