The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Events\CandidateDeleted: $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
/**
18
* @var Candidate
19
*/
20
public $candidate;
21
22
public $emailAddress;
23
24
/**
25
* Create a new event instance.
26
*
27
* @param Candidate $candidate
28
* @param $emailAddress
29
*/
30
public function __construct(Candidate $candidate, $emailAddress)