frame
Using Tailwind 4 alongside with filament
Yes, relative @import worked with a basic vite setup for tw4. Then when you need to rebuild filament panel's css you need to temporarily install tw3 and run something like
npx tailwindcss@3 --input ./resources/css/filament/admin/theme.css --output ./public/css/filament/admin/theme.css --config ./resources/css/filament/tailwind.config.js --minify
8 replies
Using Tailwind 4 alongside with filament
https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme At the bottom theres some cli command example about
npx tailwindcss@3
, so maybe you can build the complete filament css file before hand, and then reference the file in your FilamentServiceProvider using ->theme
. 🤔8 replies
Query string null in a relationmanager
Hey! Yeah i did something like that. Setting group as a property worked and also helped debug another problem I had, this time with custom pages 😅 https://discord.com/channels/883083792112300104/1327240818855252000/1327250122551201852
Using
#[Url]
to optimize line count further might be a good idea 👍13 replies
Custom resource page $this->record null when searching/sorting
Actually did not work I just messed up. What really worked is setting additional
public MyModel $myRecord;
in the page and setting that on mount and using that instead of $this->record
5 replies
Query string null in a relationmanager
Filter relationmanager rows by two columns, User and Group. So $record would be User but then I need to also pass Group so I need to pass that by query string in URL, for example
UserResource::getUrl('view', ['record' => $record, 'group_id' => $group->id])
13 replies