Files
RomhackPlaza/app/Filament/Resources/Genres/Schemas/GenreForm.php

23 lines
509 B
PHP
Raw Normal View History

2026-05-20 18:25:15 +02:00
<?php
namespace App\Filament\Resources\Genres\Schemas;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Schema;
class GenreForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required()
->maxLength(255),
TextInput::make('slug')
->required()
->maxLength(255),
]);
}
}