The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Conner\Tagging\Events\TagAdded: $collectionClass, $id, $relations, $class, $connection, $keyBy
Loading history...
13
14
/** @var Taggable|Model * */
15
public $model;
16
17
/** @var string */
18
public $tagSlug;
19
20
/** @var Tagged */
21
public $tagged;
22
23
/**
24
* Create a new event instance.
25
*
26
* @param Taggable|Model $model
27
*/
28
public function __construct($model, string $tagSlug, Tagged $tagged)