Sindbad~EG File Manager
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
use App;
class Role extends Model
{
use PreventDemoModeChanges;
protected $with = ['role_translations'];
public function getTranslation($field = '', $lang = false){
$lang = $lang == false ? App::getLocale() : $lang;
$role_translation = $this->role_translations->where('lang', $lang)->first();
return $role_translation != null ? $role_translation->$field : $this->$field;
}
public function role_translations(){
return $this->hasMany(RoleTranslation::class);
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists