Hugo
Looping through multiple Livewire components containing Filament Action crashes Firefox/Safari
@Grégoire I've found a solution that works even when leaving the InteractsWithActions.
This is a temporary solution, allowing you to space out requests if they're too close to each other.
Just add this JS script to your page:
11 replies
Looping through multiple Livewire components containing Filament Action crashes Firefox/Safari
And indeed I confirm that by removing the InteractsWithActions I no longer have the problem, however this is really problematic for the logic of my application...
11 replies
How loop a list in View item view (infolist)?
You can build a new section dynamically before the “return $infolist”, by doing your foreach on the variants of your product, store this section in a variable and display it in your schema.
Something like that :
12 replies
Navigate between records on ViewAction
But as I don't use pages, but a modal, I have to change the record to next or previous, so how to do instead of
$action->url(fn (): string => static::getResource()::getUrl(static::getResourcePageName(), ['record' => $this->getNextRecord() ]));
in your trait ? 😕29 replies