We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e762c7 commit 88c111bCopy full SHA for 88c111b
app/Providers/Filament/AdminPanelProvider.php
@@ -2,6 +2,7 @@
2
3
namespace App\Providers\Filament;
4
5
+use Filament\Actions\Action;
6
use Filament\Http\Middleware\Authenticate;
7
use Filament\Http\Middleware\AuthenticateSession;
8
use Filament\Http\Middleware\DisableBladeIconComponents;
@@ -55,6 +56,12 @@ public function panel(Panel $panel): Panel
55
56
->authMiddleware([
57
Authenticate::class,
58
])
59
+ ->userMenuItems([
60
+ Action::make('Horizon')
61
+ ->url(fn(): string => route('horizon.index'))
62
+ ->icon('heroicon-o-presentation-chart-bar')
63
+ ->openUrlInNewTab(),
64
+ ])
65
->brandLogo(asset('images/laravelio-logo.svg'))
66
->unsavedChangesAlerts()
67
->spa();
0 commit comments