Adding a search to Tenant Menu
I'm trying to add a search to the Tenant menu for when the list of tenants is too long that it takes over the whole screen height. But I can't figure out how to add it or modify the menu. I tried creating a blade file with the name
tenant-menu.blade.php
and placing it in the resources/views/filament/components folder, but it doesn't seem to be reading that file to overwrite the original. What am I missing? Should I build a plugin for that instead?Solution:Jump to solution
For anyone who's trying to figure it out themselves, I had the file in the wrong spot.
It needed to go in
reosources/views/vendor/filament-panels/components/tenant-menu.blade.php
I was then able to add code to add a search box....3 Replies
Solution
For anyone who's trying to figure it out themselves, I had the file in the wrong spot.
It needed to go in
reosources/views/vendor/filament-panels/components/tenant-menu.blade.php
I was then able to add code to add a search box.@Clay Bitner any chance you can share that bit of code? Would save me some time π