bogus
Update Edit Modal on Table
@David | Fortune Validator I'm not sure, but maybe this can help
https://laraveldaily.com/post/filament-relation-manager-live-update-main-form-after-changes
26 replies
Need advice on how to start big project
I know about drawsql app
With "Export to Laravel Migrations" function https://drawsql.app/docs/export-to-laravel-migrations
14 replies
Is Filament V3 with compatible with tenancyforlaravel https://tenancyforlaravel.com/
For filament v2 and stancl/tenancy found this documentation https://filamentphp.com/docs/2.x/admin/resources/getting-started#stancltenancy
34 replies
I want to be able to make some minor CSS tweaks (laravel 10/Filament V3)
>>Really I just want to change the width of the main panel at the moment,
This can be done without changing styles
`php
return $panel
->maxContentWidth('full');
12 replies
I want to be able to make some minor CSS tweaks (laravel 10/Filament V3)
@dodecadaedra https://filamentphp.com/docs/3.x/support/assets#using-tailwind-css-in-plugins
Now, when the
php artisan filament:assets
command is run, this CSS file is copied into the /public directory12 replies
BelongsToMany Relationship Cast Problem on Edit Record
Hi, @CodingAuthority
have you figured out how to solve this problem?
The most interesting thing is that in my case, when writing, cast works, but when reading for editing it does not =/
here not a solution, but an interesting workaround https://www.youtube.com/watch?v=0vhAfwr1WRk
6 replies
Load different data based on the role
@Pasindu check this documentation https://filamentphp.com/docs/3.x/panels/tenancy
this is about tenancy but solution with space good enough
better will be to do this mo globally.... especially if you have many records
7 replies
Login Two Pannel Same Browser
@Sourabh use custom guard authentication
https://laravel.com/docs/10.x/authentication#adding-custom-guards
1) /config/auth.php
3) And each Filament-panel uses a specific guard for authentication ->authGuard('***')
8 replies