|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace App\Filament\Resources; |
| 4 | + |
| 5 | +use App\Filament\Resources\UserResource\Pages; |
| 6 | +use App\Filament\Resources\UserResource\Pages\CreateUser; |
| 7 | +use App\Filament\Resources\UserResource\RelationManagers; |
| 8 | +use App\Models\User; |
| 9 | +use Filament\Forms; |
| 10 | +use Filament\Forms\Components\Select; |
| 11 | +use Filament\Forms\Form; |
| 12 | +use Filament\Pages\Page; |
| 13 | +use Filament\Resources\Resource; |
| 14 | +use Filament\Tables; |
| 15 | +use Filament\Tables\Table; |
| 16 | +use Illuminate\Database\Eloquent\Builder; |
| 17 | +use Illuminate\Database\Eloquent\SoftDeletingScope; |
| 18 | +use Illuminate\Support\Facades\Hash; |
| 19 | + |
| 20 | +class UserResource extends Resource |
| 21 | +{ |
| 22 | + protected static ?string $model = User::class; |
| 23 | + |
| 24 | + protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack'; |
| 25 | + |
| 26 | + public static function form(Form $form): Form |
| 27 | + { |
| 28 | + return $form |
| 29 | + ->schema([ |
| 30 | + Forms\Components\TextInput::make('name') |
| 31 | + ->required(), |
| 32 | + Forms\Components\TextInput::make('email') |
| 33 | + ->email() |
| 34 | + ->required(), |
| 35 | + Forms\Components\DateTimePicker::make('email_verified_at'), |
| 36 | + Forms\Components\TextInput::make('password') |
| 37 | + ->password() |
| 38 | + ->dehydrateStateUsing(fn ($state) => Hash::make($state)) |
| 39 | + ->dehydrated(fn (?string $state) => filled($state)) |
| 40 | + ->required(fn (Page $livewire) => ($livewire instanceof CreateUser)) |
| 41 | + ->minLength(6), |
| 42 | + Select::make('roles') |
| 43 | + ->relationship('roles','name') |
| 44 | + ->multiple() |
| 45 | + ->preload() |
| 46 | + ]); |
| 47 | + } |
| 48 | + |
| 49 | + public static function table(Table $table): Table |
| 50 | + { |
| 51 | + return $table |
| 52 | + ->columns([ |
| 53 | + Tables\Columns\TextColumn::make('name') |
| 54 | + ->searchable(), |
| 55 | + Tables\Columns\TextColumn::make('email') |
| 56 | + ->searchable(), |
| 57 | + Tables\Columns\TextColumn::make('email_verified_at') |
| 58 | + ->dateTime() |
| 59 | + ->sortable(), |
| 60 | + Tables\Columns\TextColumn::make('created_at') |
| 61 | + ->dateTime() |
| 62 | + ->sortable() |
| 63 | + ->toggleable(isToggledHiddenByDefault: true), |
| 64 | + Tables\Columns\TextColumn::make('updated_at') |
| 65 | + ->dateTime() |
| 66 | + ->sortable() |
| 67 | + ->toggleable(isToggledHiddenByDefault: true), |
| 68 | + ]) |
| 69 | + ->filters([ |
| 70 | + // |
| 71 | + ]) |
| 72 | + ->actions([ |
| 73 | + Tables\Actions\EditAction::make(), |
| 74 | + ]) |
| 75 | + ->bulkActions([ |
| 76 | + Tables\Actions\BulkActionGroup::make([ |
| 77 | + Tables\Actions\DeleteBulkAction::make(), |
| 78 | + ]), |
| 79 | + ]); |
| 80 | + } |
| 81 | + |
| 82 | + public static function getRelations(): array |
| 83 | + { |
| 84 | + return [ |
| 85 | + // |
| 86 | + ]; |
| 87 | + } |
| 88 | + |
| 89 | + public static function getPages(): array |
| 90 | + { |
| 91 | + return [ |
| 92 | + 'index' => Pages\ListUsers::route('/'), |
| 93 | + 'create' => Pages\CreateUser::route('/create'), |
| 94 | + 'edit' => Pages\EditUser::route('/{record}/edit'), |
| 95 | + ]; |
| 96 | + } |
| 97 | +} |
0 commit comments