Link to Edit Record from Livewire Filament Table

Hello,

I am having an issue with setting url to edit action on my custom Livewire component that includes filament table.

My main Product Resource that i have, does not possess EditProduct it is slideOver action. Now i have tried linking like this

->actions([
                Action::make('Edit')
                ->url(
                    fn($record) => ListProducts::getUrl() . "?tableAction=edit&tableActionRecord={$record->id}",
                    shouldOpenInNewTab: true)
            ])


Like it is via global search when it opens, but that query string get's overriden as soon as page loads, any solution to this?
Was this page helpful?