Jacob
Jacob
FFilament
Created by Jacob on 1/3/2025 in #❓┊help
Register plugin from service provider
Both packages don't have what I want. I simply want to load my Filament plugin without manualy registrering it in my AdminPanelProvider class.
9 replies
FFilament
Created by Jacob on 1/3/2025 in #❓┊help
Register plugin from service provider
I have a Laravel composer package/ Filament plugin. When someone installs the package using composer I want that the Filament plugin is automatically loaded. So that the user doesn't have to add it manually to the ->plugins() in their AdminPanelProvider class.
9 replies
FFilament
Created by Jacob on 1/3/2025 in #❓┊help
Register plugin from service provider
It seems that it doesn't load any plugins and widgets from my package anymore, when I do it that way.
9 replies
FFilament
Created by Jacob on 1/3/2025 in #❓┊help
Register plugin from service provider
This does load the plugin, but I get some weird errors from plugins loaded by my plugin and widget blade files not loaded.
9 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
Limit it to for example 1000 records
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
So I am looking for a way to limit the amount of records someone can select
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
Can't do that with Filament
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
I want to bulk select 40.000 records
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
I can only limit the pagination on 100, otherwise Filament will let the browser crash. That's not a sollution for me
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
People want to do things in bulk. They don't want to the same same action a thousand times...
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
That's the question... How...?
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
Table performance is terrible in V3, hope it's improved in V4
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
I want do something with the records, that's why someone selects them. Only a simple update of the selected records hurts the performance badly.
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
No description
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
No, limit the selection of bulk action records. You can now select thousands of records and the browser will crash
29 replies
FFilament
Created by lamberttraccard on 9/15/2023 in #❓┊help
Limit max selected records on bulk table
@lamberttraccard Did you find a way to limit it?
29 replies
FFilament
Created by Jacob on 9/26/2024 in #❓┊help
Is it possible to add pages to the global search results?
That is a nice plugin, and I'm already using it! But I mean is that I have a custom page, for example titled "General Settings" and I want that page to appear in the search results when I search for "general settings".
5 replies
FFilament
Created by nowak on 9/10/2024 in #❓┊help
Is it possible to add validation to a `Action::make()` before opening the confirmation modal?
I managed to get it working using the ->beforeFormFilled() method, but this requires you to use an form inside the modal.
->beforeFormFilled(function (Collection $records, BulkAction $action) {
// Check for something
if (true) {
Notification::make()
->title("Can't do that!")
->danger()
->send();

$action->cancel();
}
}),
->beforeFormFilled(function (Collection $records, BulkAction $action) {
// Check for something
if (true) {
Notification::make()
->title("Can't do that!")
->danger()
->send();

$action->cancel();
}
}),
7 replies
FFilament
Created by nowak on 9/10/2024 in #❓┊help
Is it possible to add validation to a `Action::make()` before opening the confirmation modal?
Ok thx!
7 replies
FFilament
Created by nowak on 9/10/2024 in #❓┊help
Is it possible to add validation to a `Action::make()` before opening the confirmation modal?
@nowak Did you manage to get this working?
7 replies