Skip to content

Instantly share code, notes, and snippets.

@neverything
Last active September 4, 2025 07:09
Show Gist options
  • Save neverything/91020c84134d27e79420eb67dc21a47f to your computer and use it in GitHub Desktop.
Save neverything/91020c84134d27e79420eb67dc21a47f to your computer and use it in GitHub Desktop.
Laravel Cloud Navigation in Filament v4: Full tutorial and code https://silvanhagen.com/writing/laravel-cloud-navigation-in-filament/
<?php
namespace App\Providers\Filament;
class AdminPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
// your other panel config
->topNavigation();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment