whoami7 - Manager
:
/
home
/
dataiclx
/
datasyspk.com
/
app
/
Upload File:
files >> /home/dataiclx/datasyspk.com/app/FlashDeal.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use App; class FlashDeal extends Model { public function getTranslation($field = '', $lang = false){ $lang = $lang == false ? App::getLocale() : $lang; $flash_deal_translation = $this->hasMany(FlashDealTranslation::class)->where('lang', $lang)->first(); return $flash_deal_translation != null ? $flash_deal_translation->$field : $this->$field; } public function flash_deal_translations(){ return $this->hasMany(FlashDealTranslation::class); } public function flash_deal_products() { return $this->hasMany(FlashDealProduct::class); } }
Copyright ©2021 || Defacer Indonesia