Carlo
Carlo
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
I'm trying to disable row click for all of my tables as default, but it seems to not work. Can please anyone correct me. Thanks!
Table::configureUsing(
fn (Table $component) => $component->recordUrl(null)
);
Table::configureUsing(
fn (Table $component) => $component->recordUrl(null)
);
18 replies
FFilament
Created by Carlo on 7/11/2024 in #❓┊help
Filament Action inside a custom Livewire component
No description
6 replies
FFilament
Created by Carlo on 9/11/2023 in #❓┊help
Is it possible to hide tenant menu in navbar?
I'd like to hide tenant feature to some users, but having a default team so the app still works
2 replies
FFilament
Created by Carlo on 9/2/2023 in #❓┊help
Default select not working
No description
4 replies
FFilament
Created by Carlo on 8/29/2023 in #❓┊help
Table header actions not showing in view page
How do you show the headerActions of a relation manager inside a view page resource? It only shows if I'm on the edit page, but I also want it to be enabled in view page. Is this possible?
6 replies
FFilament
Created by Carlo on 8/29/2023 in #❓┊help
Customize modal width in simple resource default create and edit action
9 replies
FFilament
Created by Carlo on 8/17/2023 in #❓┊help
Form select createOptionForm modal width
Is it possible to control / change the max modal width of createOptionForm in select form builder component?
4 replies
FFilament
Created by Carlo on 8/16/2023 in #❓┊help
Summary is not computing correctly
4 replies
FFilament
Created by Carlo on 8/14/2023 in #❓┊help
How to call a scope in $this->getPageTableQuery()?
I'm using modifyQueryUsing() in my table resource passing the scope but I can't figure it out how to add the scope in my StatsWidget using the getPageTableQuery is this possible?
4 replies
FFilament
Created by Carlo on 8/8/2023 in #❓┊help
Tenancy trigger an action when navigating to different teams?
How can I update the currently selected team's updated_at?
6 replies
FFilament
Created by Carlo on 8/5/2023 in #❓┊help
Append another form field?
How do you append another field before saving?
Section::make()
->schema([
TextInput::make('email')
->string()
->required()
->maxLength(255),
Select::make('domain')
->options(Domain::all()->pluck('name', 'id'))
])
->columns(2)
Section::make()
->schema([
TextInput::make('email')
->string()
->required()
->maxLength(255),
Select::make('domain')
->options(Domain::all()->pluck('name', 'id'))
])
->columns(2)
I'd like to append the selected domain to email before it gets saved but I'm not sure how to do it.
6 replies
FFilament
Created by Carlo on 7/29/2023 in #❓┊help
Adding widget in a page resource
6 replies
FFilament
Created by Carlo on 7/25/2023 in #❓┊help
How do you adjust the modal's max width in a ModelResource's default create?
I can change the modal's max width in the table action but I cannot figure it out how to adjust the default modal create
6 replies