for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Events\Customers\Admin;
use Illuminate\Queue\SerializesModels;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use App\Models\Customer;
class CustomerRestoredEvent
{
use Dispatchable;
use SerializesModels;
Illuminate\Queue\SerializesModels
App\Events\Customers\Admin\CustomerRestoredEvent
$id
$relations
$class
$connection
$keyBy
use InteractsWithSockets;
public $cust;
/**
* Create a new event instance
*/
public function __construct(Customer $cust)
$this->cust = $cust;
}