*/ use HasFactory; /** * @var list */ protected $fillable = [ 'title', 'badge', 'content', 'image', 'cta_text', 'cta_url', 'order_index', 'is_active', ]; /** * @return array */ protected function casts(): array { return [ 'order_index' => 'integer', 'is_active' => 'boolean', ]; } }