Tab Badge not updating
What are the main concepts I need to learn to be a filamentphp dev?
Richeditor is not working(i can not type inside)
Deliver notifications in email
->toBroadcast($user)
that is like ->toEmail($user)
. It doesn't need to be the most perfect email but my code is mostly based around Filament notifications so something simple to implement across the whole app is required....What's your rule of thumb on when to use `heroicon-o` vs `heroicon-m`?
-o
vs -m
😅 I guess it's kind of preference. Smaller icons are better in solid. Larger icons might be too bold in solidGlobal setting for TextColumn partially working
TextColumn::configureUsing(function (TextColumn $textColumn): void {
$textColumn->timezone('Europe/Bucharest');
});
TextColumn::configureUsing(function (TextColumn $textColumn): void {
$textColumn->timezone('Europe/Bucharest');
});
->description() - is it possible to further style?
GetStateUsing - when can it be used? One example that works, one that doesn't
How to edit default input value
Laravel Octane and Filament
Tab not initialize
use InteractsWithForms;
use InteractsWithInfolists;
when using Filament\Infolists\Components...Problem in modal form
Unable to login when create new role
The HasPanelShield trait provides an implementation for the canAccessPanel method, determining access based on whether the user possesses the super_admin role or the panel_user role. It also assigns the panel_user role to the user upon creation and removes it upon deletion. Ofcourse the role names can be changed from the plugin's configuration file.It's not an issue but the intended use case if you read the docs....
Set dependant value of Datepicker in form() Filter
Repeater : Grouping items
Builder: block open by default?
how can disable days of week?
Repeaters... How to feed them custom data?
`->unique()` rule inside relationship instead of whole table
/{clientSlug}/{productSlug}
On ClientResource
, I have a ->unique(ignoreRecord: true)
on the slug field and this works fine.
Now I want to be able to create multiple product with the same productSlug unless they have the same parent (client).
I found ->unique(modifyRuleUsing: function (Unique $rule, $record)
but I'm not sure how to implement this....