akaunting/app/Events/Common/RelationshipDeleting.php
2021-07-08 10:33:43 +03:00

21 lines
296 B
PHP

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