kirakatou
kirakatou
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
oh ok willl try it thanks
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
oh we can add custom class to row ?
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
how do i do this ? do u have link for the doc ?
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
for the form yes, just having problem for that sticky layout since the action button is seperate from form.
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
ya create invoice is just save button. i dont think i have decision to change the design, is there a way i make customize layout for it to be sticky bottom ?
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
No description
16 replies
FFilament
Created by kirakatou on 2/18/2025 in #❓┊help
add textinput beside action
so i disable current action like create, create another and cancel first, and then add action in form layout ?
16 replies
FFilament
Created by PabloZagni on 7/29/2024 in #❓┊help
createOptionForm not checking policys
@J H u can use when for visibility
Select::make('country_id')->relationship('country', 'name')
->rules(['integer', 'exists:countries,id'])
->searchable()
->preload()
->when(auth()->user()->can('create', Country::class), function ($field) {
return $field->createOptionForm(fn() => CountryResource::formFields());
})
Select::make('country_id')->relationship('country', 'name')
->rules(['integer', 'exists:countries,id'])
->searchable()
->preload()
->when(auth()->user()->can('create', Country::class), function ($field) {
return $field->createOptionForm(fn() => CountryResource::formFields());
})
8 replies