要在 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中文網其他相關文章!