要在 Filament v3 中创建或更新资源后重定向到列表页面,您可以在资源类中使用自定义特征。
创建自定义特征
<?php namespace App\Traits; trait RedirectIndex { protected function getRedirectUrl(): string { return $this->getResource()::getUrl('index'); } }
在您的细丝资源中使用该特性
class CreateProduct extends CreateRecord { protected static string $resource = ProductResource::class; //add trait in your CreateRecord or UpdateRecord use \App\Traits\RedirectIndex; }
以上是Filament 如何使用 Trait(创建、更新)后重定向到列表页面的详细内容。更多信息请关注PHP中文网其他相关文章!