128 lines
4.2 KiB
PHP
128 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Users;
|
|
|
|
use UnitEnum;
|
|
use App\Filament\Resources\Users\Pages;
|
|
use App\Filament\Resources\Users\RelationManagers;
|
|
use App\Models\User;
|
|
use Filament\Schemas;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Forms\Components\Select;
|
|
use Filament\Schemas\Components\Section;
|
|
use Filament\Forms\Components\Toggle;
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\CreateAction;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
|
|
class UserResource extends Resource
|
|
{
|
|
protected static ?string $model = User::class;
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'User Management';
|
|
protected static ?string $navigationLabel = 'Users';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
Section::make('User Details')
|
|
->components([
|
|
TextInput::make('name')
|
|
->required()
|
|
->maxLength(255),
|
|
TextInput::make('email')
|
|
->email()
|
|
->required()
|
|
->maxLength(255),
|
|
TextInput::make('password')
|
|
->password()
|
|
->dehydrateStateUsing(fn (string $state): string => bcrypt($state))
|
|
->dehydrated(fn (?string $state): bool => filled($state))
|
|
->required(fn (string $operation): bool => $operation === 'create')
|
|
->maxLength(255),
|
|
Select::make('role_id')
|
|
->relationship('role', 'name')
|
|
->required(),
|
|
])->columns(2)
|
|
->columnSpanFull(),
|
|
|
|
Section::make('Preferences')
|
|
->components([
|
|
Toggle::make('email_notifications_enabled')
|
|
->default(true),
|
|
Select::make('theme_preference')
|
|
->options([
|
|
'light' => 'Light',
|
|
'dark' => 'Dark',
|
|
])
|
|
->default('light'),
|
|
Select::make('locale')
|
|
->options([
|
|
'en' => 'English',
|
|
'de' => 'Deutsch',
|
|
])
|
|
->default('en'),
|
|
])->columns(2)
|
|
->columnSpanFull(),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('name')->searchable()->sortable(),
|
|
TextColumn::make('email')->searchable()->sortable(),
|
|
TextColumn::make('role.name')->searchable()->sortable(),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
EditAction::make(),
|
|
])
|
|
->bulkActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
]),
|
|
])
|
|
->emptyStateActions([
|
|
CreateAction::make(),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListUsers::route('/'),
|
|
'create' => Pages\CreateUser::route('/create'),
|
|
'edit' => Pages\EditUser::route('/{record}/edit'),
|
|
];
|
|
}
|
|
|
|
public static function getNavigationGroup(): ?string
|
|
{
|
|
return __('filament.navigation.groups.user_management');
|
|
}
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('filament.navigation.user_roles');
|
|
}
|
|
}
|