KingStalker
KingStalker
FFilament
Created by Citizen on 2/11/2025 in #❓┊help
Why are my dashboard panels so small?
@Citizen lol "No worries. Size doesn't matter. I tried explaining this to my wife but apparently she's not a filament expert."
10 replies
FFilament
Created by KingStalker on 2/11/2025 in #❓┊help
how to globally disable create another ?
thanks i give it a go when i get back
10 replies
FFilament
Created by KingStalker on 2/11/2025 in #❓┊help
how to globally disable create another ?
Thanks for the input! I was hoping there might be a simpler way to globally disable the 'Create Another' button, perhaps through a setting in the panel or a method in a service provider. From what I understand, it seems like I'd need to set:
protected static bool $canCreateAnother = false;
protected static bool $canCreateAnother = false;
on each individual create page. Is that really the only approach, or is there a more global solution, like a method such as $panel->disableCreateAnotherButtonGlobally() that could handle it across all resources?
10 replies
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
67 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 ?
67 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