KingStalker
KingStalker
FFilament
Created by titoshadow on 9/19/2024 in #❓┊help
InfoList max width
oh i see idk maybe try
->modalWidth(MaxWidth::SevenExtraLarge) or ->modalWidth(MaxWidth::Full)
->modalWidth(MaxWidth::SevenExtraLarge) or ->modalWidth(MaxWidth::Full)
15 replies
FFilament
Created by titoshadow on 9/19/2024 in #❓┊help
InfoList max width
No description
15 replies
FFilament
Created by JJSanders on 5/29/2024 in #❓┊help
Uncaught Snapshot missing on Livewire component with id: QAcNIGM0wsdXZxTaZYW7
i guess at this point its best to make a repository to reproduce the same error so we can debug it
66 replies
FFilament
Created by JJSanders on 5/29/2024 in #❓┊help
Uncaught Snapshot missing on Livewire component with id: QAcNIGM0wsdXZxTaZYW7
what is your APP URL ?
66 replies
FFilament
Created by KarlBoosterBär on 9/17/2024 in #❓┊help
Test Form Component Action
i think its like this
->assertHasErrors([
'name' => ['required' => 'The name field is required.'],
'type' => ['required' => 'The type field is required.'],
'starts_at' => ['required' => 'The start At field is required.']
]);

// or

->assertHasErrors([
'name' => ['required'],
'type' => ['required'],
'starts_at' => ['required']
]);
->assertHasErrors([
'name' => ['required' => 'The name field is required.'],
'type' => ['required' => 'The type field is required.'],
'starts_at' => ['required' => 'The start At field is required.']
]);

// or

->assertHasErrors([
'name' => ['required'],
'type' => ['required'],
'starts_at' => ['required']
]);
5 replies