MIF_E31221451/app/Filament/Resources/StudentSubjectResource.php

93 lines
2.9 KiB
PHP

<?php
namespace App\Filament\Resources;
use App\Filament\Resources\StudentSubjectResource\Pages;
use App\Filament\Resources\StudentSubjectResource\RelationManagers;
use App\Models\StudentSubject;
use Filament\Forms;
use Filament\Forms\Components\Card;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Form;
use Filament\Resources\Resource;
use Filament\Tables;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
class StudentSubjectResource extends Resource
{
protected static ?string $model = StudentSubject::class;
protected static ?string $navigationIcon = 'heroicon-o-book-open';
protected static ?string $navigationLabel = 'Mata Pelajaran';
protected static ?string $pluralLabel = 'Mata Pelajaran';
protected static ?string $modelLabel = 'Mata Pelajaran';
protected static ?string $slug = 'mata-pelajaran';
public static function form(Form $form): Form
{
return $form
->schema([
Card::make()
->schema([
TextInput::make('name')
->label('Nama Mata Pelajaran')
->required()
->maxLength(255)
->unique(ignoreRecord: true)
->placeholder('Masukkan nama mata pelajaran'),
TextInput::make('description')
->label('Deskripsi')
->maxLength(500)
->placeholder('Masukkan deskripsi singkat mata pelajaran (opsional)'),
])
]);
}
public static function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('name')
->label('Nama Mata Pelajaran')
->searchable()
->sortable()
->badge()
->colors(['primary'])
->wrap(),
])
->filters([
//
])
->actions([
Tables\Actions\ViewAction::make(),
Tables\Actions\EditAction::make(),
Tables\Actions\DeleteAction::make(),
])
->bulkActions([
Tables\Actions\BulkActionGroup::make([
Tables\Actions\DeleteBulkAction::make(),
]),
]);
}
public static function getRelations(): array
{
return [
//
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListStudentSubjects::route('/'),
'create' => Pages\CreateStudentSubject::route('/create'),
'edit' => Pages\EditStudentSubject::route('/{record}/edit'),
];
}
}