Jacob
Jacob
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
FFilament
Created by nostrodamned on 9/19/2023 in #❓┊help
Spatie Settings multiple groups on one page
Which package do you suggest to use?
6 replies
FFilament
Created by nostrodamned on 9/19/2023 in #❓┊help
Spatie Settings multiple groups on one page
@cvc Hey, have you figured out how to do this?
6 replies
FFilament
Created by Jacob on 8/22/2023 in #❓┊help
Change query results
How can I add non existing records to the results?
5 replies