95 lines
3.0 KiB
PHP
95 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\RoleResource\Pages;
|
|
use Spatie\Permission\Models\Role;
|
|
use Spatie\Permission\Models\Permission;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
|
|
class RoleResource extends Resource
|
|
{
|
|
protected static ?string $model = Role::class;
|
|
protected static ?string $navigationGroup = 'Administración';
|
|
protected static ?string $navigationLabel = 'Roles';
|
|
protected static ?string $title = 'Administración de Roles';
|
|
protected static ?string $navigationIcon = 'heroicon-o-key';
|
|
|
|
public static function canViewAny(): bool
|
|
{
|
|
return auth()->user()->can('ver roles');
|
|
}
|
|
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('name')
|
|
->label('Nombre del Rol')
|
|
->required()
|
|
->unique(ignoreRecord: true)
|
|
->maxLength(255),
|
|
|
|
Forms\Components\MultiSelect::make('permissions')
|
|
->label('Permisos')
|
|
->relationship('permissions', 'name')
|
|
->options(Permission::pluck('name', 'id'))
|
|
->searchable()
|
|
->preload()
|
|
->columnSpanFull(),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('id')->sortable(),
|
|
Tables\Columns\TextColumn::make('name')
|
|
->label('Rol')
|
|
->sortable()
|
|
->searchable(),
|
|
Tables\Columns\TextColumn::make('permissions.name')
|
|
->label('Permisos')
|
|
->badge()
|
|
->separator(', '),
|
|
Tables\Columns\TextColumn::make('created_at')
|
|
->label('Creado el')
|
|
->dateTime('d/m/Y H:i')
|
|
->sortable(),
|
|
])
|
|
->paginated(true)
|
|
//->paginationPageOptions([50])
|
|
->defaultSort('created_at', 'desc')
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make()->visible(fn($record) => $record->name !== 'Super Admin'),
|
|
Tables\Actions\DeleteAction::make()->visible(fn($record) => $record->name !== 'Super Admin'),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListRoles::route('/'),
|
|
'create' => Pages\CreateRole::route('/create'),
|
|
'edit' => Pages\EditRole::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|