Default attributes */ protected $attributes = [ // phpcs:ignore 'arrived' => false, 'arrival_date' => null, 'user_info' => null, 'active' => false, 'force_active' => false, 'got_shirt' => false, 'got_voucher' => 0, ]; /** @var array */ protected $casts = [ // phpcs:ignore 'user_id' => 'integer', 'arrived' => 'boolean', 'active' => 'boolean', 'force_active' => 'boolean', 'got_shirt' => 'boolean', 'got_voucher' => 'integer', 'arrival_date' => 'datetime', ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ // phpcs:ignore 'user_id', 'arrived', 'arrival_date', 'user_info', 'active', 'force_active', 'got_shirt', 'got_voucher', ]; }