Captures the current working tree after theme slots, ArticleAccess, and the payment / paid-content plugins so subsequent work has a reviewable git history.
66 lines
1.5 KiB
PHP
66 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\Users;
|
|
|
|
use App\Filament\Resources\Users\Pages\CreateUser;
|
|
use App\Filament\Resources\Users\Pages\EditUser;
|
|
use App\Filament\Resources\Users\Pages\ListUsers;
|
|
use App\Filament\Resources\Users\Schemas\UserForm;
|
|
use App\Filament\Resources\Users\Tables\UsersTable;
|
|
use App\Models\User;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use UnitEnum;
|
|
use App\Filament\Concerns\HasTranslatedLabels;
|
|
|
|
class UserResource extends Resource
|
|
{
|
|
use HasTranslatedLabels;
|
|
|
|
protected static ?string $model = User::class;
|
|
|
|
|
|
|
|
|
|
protected static function navKey(): string
|
|
{
|
|
return 'users';
|
|
}
|
|
|
|
protected static function modelKey(): string
|
|
{
|
|
return 'user';
|
|
}
|
|
|
|
protected static function groupKey(): string
|
|
{
|
|
return 'system';
|
|
}
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedUsers;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return UserForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return UsersTable::configure($table);
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListUsers::route('/'),
|
|
'create' => CreateUser::route('/create'),
|
|
'edit' => EditUser::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|