ヤミRoot VoidGate
User / IP
:
216.73.216.134
Host / Server
:
88.223.87.98 / 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: PreorderProduct.php
<?php namespace App\Models; use App; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use App\Traits\PreventDemoModeChanges; class PreorderProduct extends Model { use HasFactory,PreventDemoModeChanges; protected $guarded = []; protected $with = ['preorder_product_translations']; public function getTranslation($field = '', $lang = false) { $lang = $lang == false ? App::getLocale() : $lang; $preorder_product_translation = $this->preorder_product_translations->where('lang', $lang)->first(); return $preorder_product_translation != null ? $preorder_product_translation->$field : $this->$field; } public function preorder_product_translations() { return $this->hasMany(PreorderProductTranslation::class); } public function category() { return $this->belongsTo(Category::class); } public function main_category() { return $this->belongsTo(Category::class, 'category_id'); } public function categories() { return $this->belongsToMany(Category::class, 'preorder_product_categories'); } public function brand() { return $this->belongsTo(Brand::class); } public function product_queries() { return $this->hasMany(ProductQuery::class); } public function user() { return $this->belongsTo(User::class); } public function preorder_prepayment() { return $this->belongsTo(PreorderPrepayment::class); } public function preorder_sample_order() { return $this->belongsTo(PreorderSampleOrder::class); } public function preorder_coupon() { return $this->belongsTo(PreorderCoupon::class); } public function preorder_refund() { return $this->hasOne(PreorderRefund::class); } public function preorder_cod() { return $this->hasOne(PreorderCashondelivery::class); } public function preorder_discount() { return $this->belongsTo(PreorderDiscount::class); } public function preorder_shipping() { return $this->hasOne(PreorderShipping::class); } public function preorder_stock() { return $this->belongsTo(PreorderStock::class); } public function preorder_product_taxes() { return $this->hasMany(PreorderProductTax::class)->with('preorder_tax'); } public function preorder_discount_periods() { return $this->hasMany(PreorderDiscountPeriod::class); } public function preorder_wholesale_prices() { return $this->hasMany(PreorderWholesalePrice::class); } public function preorder() { return $this->hasMany(Preorder::class,'product_id'); } public function preorderProductQueries() { return $this->hasMany(PreorderProductQuery::class); } public function preorderProductreviews() { return $this->hasMany(PreorderProductReview::class); } public function taxes() { return $this->hasMany(PreorderProductTax::class)->with('preorder_tax'); } public function preorderConversations() { return $this->hasMany(PreorderConversationThread::class); } }
Coded With 💗 by
0x6ick