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

王林
Release: 2024-08-22 20:31:07
Original
463 people have browsed it

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

getResource()::getUrl('index'); } }
Copy after login

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; }
Copy after login

The above is the detailed content of Filament How to redirect to list page after (create,update) using Trait. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!