Custom Layout in Filament V3
Is it possible in Admin Panel Filament V3 to create a layout like this: on the left side, there is a list of data 1 displayed as cards vertically, in the center, there is a map display, and on the right side, there is a list of data 2 also displayed as cards like data 1? If possible, could you provide references or documentation that I can check to create such a layout?ad
4 Replies
Just a loose guess but you might be looking for custom pages?
https://filamentphp.com/docs/3.x/panels/resources/custom-pages
or custom layouts?
https://filamentphp.com/docs/3.x/forms/layout/custom
In my case, I want to make the display look like the picture, is it better to use custom pages or custom layouts?
Create a custom theme to use Tailwind classes
https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme
and then set up a Custom Page. Pages are livewire components:
https://filamentphp.com/docs/3.x/panels/pages#creating-a-page
That should get you what you need
okay thanks for your suggestion. i will try it later