This commit is contained in:
Kevin Adametz 2024-08-05 12:05:24 +02:00
parent 04d677d37a
commit bfa3bb1df4
1191 changed files with 637397 additions and 10619 deletions

View file

@ -0,0 +1,17 @@
<?php
namespace App\Services;
use App\Models\UserLevel;
class TranslationHelper
{
public static function transUserLevelName($name){
$UserLevel = UserLevel::whereName($name)->first();
return $UserLevel ? $UserLevel->getLang('name') : $name;
}
}