Mark Railton
Mark Railton
FFilament
Created by Mark Railton on 1/29/2024 in #❓┊help
Make row unique on 2 columns
As a stopgap, I've any options that are already used set as disabled in the select by using ->disableOptionWhen() and querying for the user and report name. This works as a stopgap as it's the only place in the application where a report can be added to a user but clearly not all that flexible and doesn't use the validation logic
4 replies
FFilament
Created by Mark Railton on 9/15/2023 in #❓┊help
How to introduce a variable to title of a dashboard?
Ah perfect @awcodes thanks for that
5 replies
FFilament
Created by Mark Railton on 8/26/2023 in #❓┊help
Link to related record in RelationManager list table
Bit of searching a found a solution, for others that may be wondering
->actions([
Action::make('view')->url(fn (Duty $record): string => DutyResource::getUrl('view', ['record' => $record]))
]);
->actions([
Action::make('view')->url(fn (Duty $record): string => DutyResource::getUrl('view', ['record' => $record]))
]);
3 replies