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,41 @@
<?php
namespace App\Filament\Admin\Resources\Courses\Schemas;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\Toggle;
use Filament\Schemas\Schema;
class CourseForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->components([
Select::make('teacher_id')
->relationship('teacher', 'name')
->required(),
TextInput::make('title')
->required(),
TextInput::make('slug')
->required(),
Textarea::make('description')
->columnSpanFull(),
Select::make('level_id')
->relationship('level', 'name'),
TextInput::make('price')
->required()
->numeric()
->default(0)
->prefix('$'),
TextInput::make('thumbnail_url')
->url(),
Toggle::make('is_published')
->required(),
Textarea::make('metadata')
->columnSpanFull(),
]);
}
}