first commit

This commit is contained in:
2026-01-23 17:28:21 +07:00
commit 29ff8992b9
331 changed files with 30545 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace App\Filament\Admin\Resources\Levels\Schemas;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\Textarea;
use Filament\Schemas\Schema;
class LevelForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required(),
TextInput::make('code')
->required(),
Textarea::make('description')
->columnSpanFull(),
TextInput::make('order_index')
->required()
->numeric()
->default(0),
]);
}
}