File: /home/xedaptot/work.naniguide.com/app/Events/RemovalRequestAdminLeadEvent.php
<?php
namespace App\Events;
use App\Models\RemovalRequestLead;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class RemovalRequestAdminLeadEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $removalRequestLead;
public function __construct(RemovalRequestLead $removalRequestLead)
{
$this->removalRequestLead = $removalRequestLead;
}
}