<?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;
}