Accessing resource from resource manager link
hi i have an OrderResource and an OrdersRelationManager
the OrderResource has a view page that is displayed when clicked
i would like from the table view when i click the order from the relation manager view to take me to the actual OrderResource view page
Any tips on how to achieve this ? thanks
Solution:Jump to solution
```php
ViewAction::make()
->url(function ($record) {
return route('filament.admin.resources.orders.view', $record);
}),...
2 Replies