F
Filament2w ago
alp

auth()->user() returns null on dashboard canAccess method

I have multiple dashboards for different user roles. And i have to check user's role at the canAccess method of that dashboard. I am getting error.
<?php

namespace App\Filament\Pages;

use Illuminate\Support\Facades\Auth;

class Dashboard extends \Filament\Pages\Dashboard
{
protected static ?int $navigationSort = -1;

protected static ?string $title = "Admin Dashboard";
protected static string $routePath = 'admin-dashboard';

public static function canAccess(): bool
{
return auth()->user()->hasRole('admin');
}
}
<?php

namespace App\Filament\Pages;

use Illuminate\Support\Facades\Auth;

class Dashboard extends \Filament\Pages\Dashboard
{
protected static ?int $navigationSort = -1;

protected static ?string $title = "Admin Dashboard";
protected static string $routePath = 'admin-dashboard';

public static function canAccess(): bool
{
return auth()->user()->hasRole('admin');
}
}
No description
5 Replies
Dennis Koch
Dennis Koch2w ago
Can you try Filament::auth()->user()
Matthew
Matthew2w ago
Auth::user() should work as well (and is the "official" way to do it according to laravel docs) Also iirc, auth()->user() only works if you have breeze installed, but not 100% sure
Dennis Koch
Dennis Koch2w ago
Also iirc, auth()->user() only works if you have breeze installed,
Nah, auth is completely unrelated to any Starter Kit
Matthew
Matthew2w ago
Ive also had issues with auth() but not Auth So the issue has to be somewhere 😅
Dennis Koch
Dennis Koch2w ago
Doesn't make any sense. Both resolve to the same

Did you find this page helpful?