Dennis Koch
Dennis Koch
FFilament
Created by raheel3031 on 3/29/2025 in #❓┊help
error installing filament
What was the issue?
10 replies
FFilament
Created by Mokatchi on 3/20/2025 in #❓┊help
SoftDeletes
Yeah, that's the expected behaviour, because SoftDeletes are ... somewhat deleted 😅
49 replies
FFilament
Created by thedangler on 11/9/2024 in #❓┊help
Custom Page canAccess runs after mount ?
I think you could do authorization in the mount method
8 replies
FFilament
Created by Héctor Q. Torres on 3/24/2025 in #❓┊help
How to Disable Table Polling in a Header Action on a Resource List Page?
Maybe that part is just not refreshed. You could try to reload the whole page after that change. Btw. why do you use ->mountUsing() and not ->action()?
7 replies
FFilament
Created by andrewdrake on 3/24/2025 in #❓┊help
How to stop table refreshing when using a ToggleColumn?
except the toggle button doesn't then re-render
I hoped that the state is already adjusted on client side so it doesn't need a rerender.
13 replies
FFilament
Created by Héctor Q. Torres on 3/24/2025 in #❓┊help
How to Disable Table Polling in a Header Action on a Resource List Page?
Your approach would work for current requests only. The change is not persisted anywhere. Try writing it to a property $pollingEnabled and use ->poll(fn ($livewire) => $livewire->pollingEnabled ? '5s' : null)
7 replies
FFilament
Created by ffffer. on 3/24/2025 in #❓┊help
Before form is filled, any function?
Since it's the Relation Manager you need to use the beforeFormFilled() methods on the CreateAction and EditAction
6 replies
FFilament
Created by Mokatchi on 3/20/2025 in #❓┊help
SoftDeletes
If it's due to a change in Filament, please test which version broke it and file an issue on GitHub.
49 replies
FFilament
Created by marsep95 on 5/6/2024 in #❓┊help
Search on Navigation Menu
There is an example on FilamentExamples by Laravel Daily. But it's part of their paid examples: https://filamentexamples.com/project/filament-search-above-sidebar-navigation?source=search
12 replies
FFilament
Created by andrewdrake on 3/24/2025 in #❓┊help
How to stop table refreshing when using a ToggleColumn?
You could try to overwrite the updateTableColumnState() method and add a ->skipRender():
public function updateTableColumnState(string $column, string $record, mixed $input): mixed
{
$this->skipRender();
return parent::updateTableColumnState($column, $record, $input);
}
public function updateTableColumnState(string $column, string $record, mixed $input): mixed
{
$this->skipRender();
return parent::updateTableColumnState($column, $record, $input);
}
13 replies
FFilament
Created by andrewdrake on 3/24/2025 in #❓┊help
How to stop table refreshing when using a ToggleColumn?
That wasn't the question 😅
13 replies
FFilament
Created by Myster on 3/24/2025 in #❓┊help
Hello, can Filament be used for a client area, or is it really just for an administration interface?
Oopsie.
7 replies
FFilament
Created by RafałMaślakMisterPoland on 3/23/2025 in #❓┊help
How searchable() works on form enum Select?
Whats the value of these enums?
9 replies
FFilament
Created by Myster on 3/24/2025 in #❓┊help
Hello, can Filament be used for a client area, or is it really just for an administration interface?
It can be used for whatever you want to use it 😅
7 replies
FFilament
Created by Arlyzatun on 3/24/2025 in #❓┊help
Error 503 service unavailable
Did you run php artisan down? Try running php artisan up. If that doesn’t help: Check the Laravel log
5 replies
FFilament
Created by alp on 3/21/2025 in #❓┊help
auth()->user() returns null on dashboard canAccess method
Doesn't make any sense. Both resolve to the same
9 replies
FFilament
Created by alp on 3/21/2025 in #❓┊help
auth()->user() returns null on dashboard canAccess method
Also iirc, auth()->user() only works if you have breeze installed,
Nah, auth is completely unrelated to any Starter Kit
9 replies
FFilament
Created by alp on 3/21/2025 in #❓┊help
auth()->user() returns null on dashboard canAccess method
Can you try Filament::auth()->user()
9 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
You need this: https://laravel.com/docs/master/filesystem#customizing-temporary-urls plus a controller that serves your files
71 replies