19 lines
359 B
PHP
19 lines
359 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Belts\Schemas;
|
|
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Schemas\Schema;
|
|
|
|
class BeltForm
|
|
{
|
|
public static function configure(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextInput::make('name')
|
|
->required(),
|
|
]);
|
|
}
|
|
}
|