DEV Community

JohnDivam
JohnDivam

Posted on

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

To redirect to the list page after creating or updating a resource in Filament v3, you can use a custom trait in your resource class .

Create a Custom Trait

<?php

namespace App\Traits;

trait RedirectIndex
{
    protected function getRedirectUrl(): string
    {
        return $this->getResource()::getUrl('index');
    }
}

Enter fullscreen mode Exit fullscreen mode

Use the Trait in Your Filament Resource

class CreateProduct extends CreateRecord
{
    protected static string $resource = ProductResource::class;

   //add trait in your CreateRecord or UpdateRecord
    use \App\Traits\RedirectIndex; 
}

Enter fullscreen mode Exit fullscreen mode

Top comments (2)

Collapse
 
jfprevost profile image
pasteldenata

Thank you so much, I've been looking for this for such a long time.
Done in an elegant way!
How come this isn't part of the mainstream release of Filament ?...

Collapse
 
almanza023 profile image
Eduardo Antonio Almanza Pérez

Excelente