url redirect not working

I am trying to create a redirect to a view page but this isn't working in laravel filament 3.


->actions([
                Action::make('View Order')
                    ->url(fn (Order $record): string => OrderResource::getUrl('view', $record))
                    ->icon('heroicon-m-eye'),
            ]);
Was this page helpful?