mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 19:04:45 +02:00
99 lines
3.0 KiB
PHP
99 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\MountResource\Pages;
|
|
use App\Filament\Resources\MountResource\RelationManagers;
|
|
use App\Models\Mount;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
|
|
class MountResource extends Resource
|
|
{
|
|
protected static ?string $model = Mount::class;
|
|
|
|
protected static ?string $navigationIcon = 'tabler-layers-linked';
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('uuid')
|
|
->label('UUID')
|
|
->required()
|
|
->maxLength(36),
|
|
Forms\Components\TextInput::make('name')
|
|
->required()
|
|
->maxLength(191),
|
|
Forms\Components\Textarea::make('description')
|
|
->columnSpanFull(),
|
|
Forms\Components\TextInput::make('source')
|
|
->required()
|
|
->maxLength(191),
|
|
Forms\Components\TextInput::make('target')
|
|
->required()
|
|
->maxLength(191),
|
|
Forms\Components\TextInput::make('read_only')
|
|
->required()
|
|
->numeric(),
|
|
Forms\Components\TextInput::make('user_mountable')
|
|
->required()
|
|
->numeric(),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('uuid')
|
|
->label('UUID')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('name')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('source')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('target')
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('read_only')
|
|
->numeric()
|
|
->sortable(),
|
|
Tables\Columns\TextColumn::make('user_mountable')
|
|
->numeric()
|
|
->sortable(),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\BulkActionGroup::make([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListMounts::route('/'),
|
|
'create' => Pages\CreateMount::route('/create'),
|
|
'edit' => Pages\EditMount::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|