*/ protected $fillable = [ 'ad_title', 'ad_link', 'ad_new_flag', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'ad_new_flag' => 'boolean', ]; } }