FilamentF
Filament3y ago
HL

->recordUrl global setting not working

For some reason, if I use ->recordUrl(false) in the AdminPanelProvider, it doesn't work, but it works separately in the Resource.

return $panel
->bootUsing(function () {
                Table::configureUsing(function (Table $table): void {
                    $table
                        ->recordUrl(false)
                        ->striped();
                });
            })

All my columns are striped so that part is working, and again ->recordUrl(false) works if I put it in the resource's table function, so I'm not sure what I'm missing.
Was this page helpful?