Files

21 lines
437 B
PHP
Raw Permalink Normal View History

2026-06-10 11:04:26 +02:00
<?php
namespace App\Filament\Resources\Systems\Schemas;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Schema;
class SystemForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required(),
TextInput::make('slug')
->required(),
]);
}
}