芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/lavishbdlifestyle.com/app/Models/CustomerProduct.php
customer_product_translations->where('lang', $lang)->first(); return $customer_product_translations != null ? $customer_product_translations->$field : $this->$field; } public function scopeIsActiveAndApproval($query) { return $query->where('status', '1') ->where('published', '1'); } public function category() { return $this->belongsTo(Category::class); } public function subcategory() { return $this->belongsTo(SubCategory::class); } public function subsubcategory() { return $this->belongsTo(SubSubCategory::class); } public function brand() { return $this->belongsTo(Brand::class); } public function user() { return $this->belongsTo(User::class); } public function state() { return $this->belongsTo(State::class); } public function city() { return $this->belongsTo(City::class); } public function customer_product_translations() { return $this->hasMany(CustomerProductTranslation::class); } public function thumbnail() { return $this->belongsTo(Upload::class, 'thumbnail_img'); } }