22 lines
345 B
PHP
22 lines
345 B
PHP
|
|
<?php namespace App\Events;
|
||
|
|
|
||
|
|
use App\Events\Event;
|
||
|
|
use Illuminate\Queue\SerializesModels;
|
||
|
|
|
||
|
|
class ClientWasUpdated extends Event
|
||
|
|
{
|
||
|
|
use SerializesModels;
|
||
|
|
|
||
|
|
public $client;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a new event instance.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function __construct($client)
|
||
|
|
{
|
||
|
|
$this->client = $client;
|
||
|
|
}
|
||
|
|
}
|