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