F
Filament11mo ago
Adel

does RelationManager support navigating to view instead of modal view?

does RelationManager support navigating to view instead of modal view?
Solution:
You can write your own Action and link to the page. You don't get hierarchy this way though. ```php Action::make('view') ->url(fn ($record) => YourResource::getUrl('view', ['record' => $record]))...
Jump to solution
1 Reply
Solution
Dennis Koch
Dennis Koch11mo ago
You can write your own Action and link to the page. You don't get hierarchy this way though.
Action::make('view')
->url(fn ($record) => YourResource::getUrl('view', ['record' => $record]))
Action::make('view')
->url(fn ($record) => YourResource::getUrl('view', ['record' => $record]))