*/ use HasFactory; /** * @var list */ protected $fillable = [ 'category', 'question', 'answer', 'order_index', 'is_active', ]; /** * @return array */ protected function casts(): array { return [ 'category' => FaqCategory::class, 'order_index' => 'integer', 'is_active' => 'boolean', ]; } }