ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/limpiar.in.net/app/Models/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/limpiar.in.net/app/Models/PickupPoint.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use App; class PickupPoint extends Model { protected $with = ['pickup_point_translations']; public function getTranslation($field = '', $lang = false){ $lang = $lang == false ? App::getLocale() : $lang; $pickup_point_translation = $this->pickup_point_translations->where('lang', $lang)->first(); return $pickup_point_translation != null ? $pickup_point_translation->$field : $this->$field; } public function pickup_point_translations(){ return $this->hasMany(PickupPointTranslation::class); } public function staff(){ return $this->belongsTo(Staff::class); } }