ヤミRoot VoidGate
User / IP
:
216.73.216.141
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
Modules
/
TaxModule
/
app
/
Models
/
Viewing: OrderTax.php
<?php namespace Modules\TaxModule\app\Models; use App\Models\Order; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\Relations\MorphTo; class OrderTax extends Model { use HasFactory; protected $guarded = ['id']; protected $casts = [ 'tax_percentage' => 'float', 'tax_amount' => 'float', 'before_tax_amount' => 'float', 'after_tax_amount' => 'float', 'order_id' => 'integer', 'tax_id' => 'integer', 'store_id' => 'integer', 'system_tax_setup_id' => 'integer', ]; public function Orders(): HasMany { return $this->hasMany(Order::class, 'order_id'); } public function store(): MorphTo { return $this->morphTo(); } public function tax(): BelongsTo { return $this->belongsTo(Tax::class, 'tax_id'); } }
Coded With 💗 by
0x6ick