.najibahmed
.najibahmed
FFilament
Created by .najibahmed on 9/16/2023 in #❓┊help
call livewire component from view::make()
Is it possible to call a livewire componet from wizard view component. Something like: Forms\Components\View::make(@livewire('livewire-component-name'))
10 replies
FFilament
Created by .najibahmed on 9/15/2023 in #❓┊help
Limit tags using tagInput
How to limit the number of tags by using TagInput?
5 replies
FFilament
Created by .najibahmed on 9/14/2023 in #❓┊help
How to translate userMenuItems i panel?
public function panel(Panel $panel): Panel { return $panel ->id('app') ->default() ->path('app') ... ... ->userMenuItems([ MenuItem::make() ->label(__('User profile')) ->url('user/profile') ->icon('heroicon-o-cog-6-tooth'), // ... ]) ... }
this will result error: Target class [translator] does not exist. Do you have another way?
4 replies
FFilament
Created by .najibahmed on 9/14/2023 in #❓┊help
change label of nextAction wizard
How to change Next button label for Wizard in getSteps?
4 replies
FFilament
Created by .najibahmed on 9/13/2023 in #❓┊help
How to have a form save data into two tables?
I have a postResource with a create form which save data in two tables. first table for post information and another for images table. posts table does not have any id for images table. Instead media table has an id for post_id. When click create/save button then each data goes to their own table. I don't want to use media-library. #form-builder
8 replies