另外一种是通过table的action来实现:
可以参考此处文档.
类似于这样:
public static function table(Table $table): Table
{
return $table
->columns([
//...
])
->pushActions([
Tables\Actions\LinkAction::make('orders')
->url(route('orders.index'))
->label(__('general.label_order')) //国际化语言支持
->icon('heroicon-s-eye'),
// ...
]);
}
这里可以用 url()
方法跳转,也可以使用 action()
在里面redirct跳转。
更多action的内容可以看这里