LozzaJ
LozzaJ
FFilament
Created by LozzaJ on 3/30/2024 in #❓┊help
How to access row data in relationship manager
Thanks guys, I'll give those a go today
7 replies
FFilament
Created by LozzaJ on 3/30/2024 in #❓┊help
How to access row data in relationship manager
Maybe I am not explaining correctly - I have a row which may or may not have a related item (seat number) - I am displaying a link on this table row "Change Seat" with a custom link - which I only want to appear if the seat number exists.
7 replies
FFilament
Created by LozzaJ on 2/23/2024 in #❓┊help
Widget Background
Thanks will look
5 replies
FFilament
Created by LozzaJ on 2/23/2024 in #❓┊help
Widget Background
I would like for either the table or stats widget 🙂
5 replies
FFilament
Created by LozzaJ on 2/13/2024 in #❓┊help
Same field entered in varying formats
$schema = [ TextInput::make('code') ->disabled(), Select::make('type') ->options([ 'date' => 'Date', 'string' => 'String', 'integer' => 'Number', 'decimal' => 'Decimal', 'binary' => 'On/Off' ]), TextInput::make('name')->disabled(), ]; if ($form->model->type==='date') { $schema2 = [DatePicker::make('value'),]; } else { $schema2 = [TextInput::make('value'),]; } $schema = array_merge($schema,$schema2); return $form->schema($schema);
4 replies
FFilament
Created by LozzaJ on 2/13/2024 in #❓┊help
Same field entered in varying formats
I have come up with a solution - not sure if there is a better way but this works:
4 replies
FFilament
Created by LozzaJ on 2/12/2024 in #❓┊help
Notification bell missing
I did not - thank you so much 🙂
3 replies