mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
12 lines
177 B
PHP
12 lines
177 B
PHP
<?php
|
|
|
|
namespace App\Filament;
|
|
|
|
trait EditRedirectIndexTrait
|
|
{
|
|
protected function getRedirectUrl(): ?string
|
|
{
|
|
return static::$resource::getUrl('index');
|
|
}
|
|
}
|