Files
nexusphp/app/Support/TranslateWithPluginId.php
2025-10-23 15:52:40 +07:00

15 lines
205 B
PHP

<?php
namespace App\Support;
/**
* Trait StaticMake
*/
trait TranslateWithPluginId
{
public static function trans($name): string
{
return nexus_trans(static::ID . "::{$name}");
}
}