This commit is contained in:
2025-10-29 01:35:40 +05:00
parent 5b03a9be19
commit fe21695e4e
2 changed files with 9 additions and 8 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Models;
use App\Modules\UserAdjustments\Traits\UserAdjustments;
use Filament\Panel;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
@@ -45,4 +46,12 @@ class User extends Authenticatable
'password',
'remember_token',
];
/**
* Can access panel
*/
public function canAccessPanel(Panel $panel): bool
{
return true;
}
}