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