feat: add UserResource with is_admin toggle and delete
User management resource with editable is_admin field, postcode support, admin filter, and inline delete action. Includes list and edit pages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace App\Filament\Resources;
|
||||
|
||||
use App\Filament\NavigationGroup;
|
||||
use App\Filament\Resources\ApiLogResource\Pages\ListApiLogs;
|
||||
use App\Filament\Resources\ApiLogResource\Pages\ViewApiLog;
|
||||
use App\Models\ApiLog;
|
||||
@@ -21,9 +22,7 @@ class ApiLogResource extends Resource
|
||||
{
|
||||
protected static ?string $model = ApiLog::class;
|
||||
|
||||
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-server';
|
||||
|
||||
protected static string|\UnitEnum|null $navigationGroup = 'System';
|
||||
protected static string|\UnitEnum|null $navigationGroup = NavigationGroup::System;
|
||||
|
||||
protected static ?string $navigationLabel = 'API Logs';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user