Arnaud Lier
Arnaud Lier
FFilament
Created by Arnaud Lier on 6/1/2024 in #❓┊help
TableWidget::$table must not be accessed before initialization only on mobile
I have the Livewire update payload for both if that can help
3 replies
FFilament
Created by Arnaud Lier on 8/30/2023 in #❓┊help
Disabled select field with default not taken into account when creating record
I would've hoped Filament would inject those but eh, fair enough. I wonder why it worked with Filament 2 though!
7 replies
FFilament
Created by Arnaud Lier on 8/30/2023 in #❓┊help
Disabled select field with default not taken into account when creating record
Workaround for the moment in the Create page:
protected function mutateFormDataBeforeCreate(array $data): array
{
$data['team_id'] = auth()->user()?->currentTeam?->id;

return $data;
}
protected function mutateFormDataBeforeCreate(array $data): array
{
$data['team_id'] = auth()->user()?->currentTeam?->id;

return $data;
}
7 replies