*/ use HasFactory; /** * @var list */ protected $fillable = [ 'label', 'title', 'description', 'media_type', 'image', 'video_url', 'mobile_video_url', 'mobile_image', 'button_text', 'button_url', 'order_index', 'is_active', ]; /** * @return array */ protected function casts(): array { return [ 'order_index' => 'integer', 'is_active' => 'boolean', ]; } }