Files
nexusphp/app/Filament/CreateRedirectIndexTrait.php
2022-12-01 00:45:22 +08:00

12 lines
178 B
PHP

<?php
namespace App\Filament;
trait CreateRedirectIndexTrait
{
protected function getRedirectUrl(): string
{
return static::$resource::getUrl('index');
}
}