Linux premium61.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.53 & Your IP : 216.73.216.73
Domains :
Cant Read [ /etc/named.conf ]
User : vdeshvpx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
vdeshvpx /
adminapi.linkcrow.com /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Category.php
480
B
-rwxrwxrwx
2024-09-20 09:00
Country.php
228
B
-rwxrwxrwx
2024-06-30 18:36
Link.php
2.13
KB
-rwxrwxrwx
2025-03-10 19:55
LinkAssign.php
295
B
-rwxrwxrwx
2024-09-18 17:58
LinkContent.php
601
B
-rwxrwxrwx
2024-11-02 07:56
LinkContentImage.php
543
B
-rwxrwxrwx
2024-09-17 11:18
LinkStatus.php
314
B
-rwxrwxrwx
2024-06-30 18:36
Order.php
1.54
KB
-rwxrwxrwx
2025-03-10 18:50
OrderStatus.php
299
B
-rwxrwxrwx
2024-09-17 16:05
Payment.php
1.43
KB
-rw-rw-r--
2025-03-10 18:53
PaymentDetail.php
724
B
-rw-rw-r--
2025-03-10 18:53
Service.php
356
B
-rw-rw-r--
2025-03-10 18:53
ServiceValue.php
381
B
-rw-rw-r--
2025-03-10 18:53
State.php
240
B
-rwxrwxrwx
2024-06-30 18:36
User.php
1.37
KB
-rwxrwxrwx
2024-11-01 16:02
UserCard.php
466
B
-rw-rw-r--
2025-03-10 18:54
UserDetail.php
663
B
-rwxrwxrwx
2024-10-28 18:27
current.php
22
B
-rw-r--r--
2026-04-01 01:39
error_log
8.43
KB
-rw-r--r--
2026-02-09 00:58
Save
Rename
<?php namespace App\Models; use App\Models\Order; use App\Models\UserCard; use App\Models\PaymentDetail; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class Payment extends Model { use HasFactory; protected $fillable = [ 'order_id', 'card_id', 'card_last4', 'card_name', 'method', 'type', 'amount' ]; public function scopeFilter($query){ if(request()->id){ $query->where('id', request()->id); } if(request()->order_title){ $query->whereHas('order', function ($q){ $q->where('order_title', 'like', '%' . request()->order_title . '%'); }); } if(request()->type){ $query->where('type', request()->type); } if(request()->method){ $query->where('method', request()->method); } if(request()->date){ $query->whereBetween('created_at', [Carbon::parse(request()->date[0])->startOfDay(), Carbon::parse(request()->date[1])->endOfDay()]); } return $query; } public function order() { return $this->belongsTo(Order::class, 'order_id'); } public function card() { return $this->belongsTo(UserCard::class, 'card_id'); } public function detail() { return $this->hasOne(PaymentDetail::class, 'payment_id'); } }