58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Rooms;
|
|
|
|
use App\Filament\Resources\Rooms\Pages\CreateRoom;
|
|
use App\Filament\Resources\Rooms\Pages\EditRoom;
|
|
use App\Filament\Resources\Rooms\Pages\ListRooms;
|
|
use App\Filament\Resources\Rooms\Schemas\RoomForm;
|
|
use App\Filament\Resources\Rooms\Tables\RoomsTable;
|
|
use App\Models\Room;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
|
|
class RoomResource extends Resource
|
|
{
|
|
protected static ?string $model = Room::class;
|
|
|
|
protected static ?string $navigationLabel = 'Otaglar';
|
|
|
|
protected static ?string $pluralLabel = 'Otaglar';
|
|
protected static ?string $modelLabel = 'Otag';
|
|
|
|
protected static ?string $recordTitleAttribute = 'name';
|
|
|
|
protected static ?int $navigationSort = 6;
|
|
protected static string | BackedEnum | null $navigationIcon = 'icon-door-open';
|
|
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return RoomForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table->columns(RoomsTable::schema());
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListRooms::route('/'),
|
|
'create' => CreateRoom::route('/create'),
|
|
'edit' => EditRoom::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|