首頁  >  文章  >  後端開發  >  Filament 如何使用 Trait(建立、更新)後重新導向到清單頁面

Filament 如何使用 Trait(建立、更新)後重新導向到清單頁面

王林
王林原創
2024-08-22 20:31:07707瀏覽

Filament How to redirect to list page after (create,update) using Trait

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

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn