*/ protected $casts = [ 'personal_company' => 'boolean', ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'personal_company', ]; /** * The event map for the model. * * @var array */ protected $dispatchesEvents = [ 'created' => CompanyCreated::class, 'updated' => CompanyUpdated::class, 'deleted' => CompanyDeleted::class, ]; }