JChan
Custom Items in Top bar navigation
This is great, thanks very much! For the future, in case anyone is looking at this, I put this into my AdminPanelProvider.php
use Filament\View\PanelsRenderHook;
->renderHook(
PanelsRenderHook::GLOBAL_SEARCH_BEFORE,
fn () => view('calendardropdown')
)
Then I created a view at
/resources/views/calendardropdown.blade.php
I was hoping to find a render hook that would put it before my navigation items but after my brandname (I have topNavigation()), but I couldn't seem to find one for that spot. Oh well, this will work.
6 replies