Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
Game source /
core /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Admin.php
297
B
-rw-r--r--
2024-05-09 05:39
AdminNotification.php
195
B
-rw-r--r--
2024-05-09 05:39
AdminPasswordReset.php
227
B
-rw-r--r--
2024-05-09 05:39
BalanceTransfer.php
333
B
-rw-r--r--
2025-06-18 09:29
CommissionLog.php
406
B
-rw-r--r--
2022-08-26 01:49
CronJob.php
412
B
-rw-r--r--
2024-05-09 05:39
CronJobLog.php
106
B
-rw-r--r--
2024-05-09 05:39
CronSchedule.php
159
B
-rw-r--r--
2024-05-09 05:39
Deposit.php
2.86
KB
-rw-r--r--
2024-05-09 05:39
DeviceToken.php
107
B
-rw-r--r--
2024-05-09 05:39
Extension.php
525
B
-rw-r--r--
2024-05-09 05:39
Form.php
619
B
-rw-r--r--
2024-05-09 05:39
Frontend.php
328
B
-rw-r--r--
2024-05-09 05:39
Game.php
409
B
-rw-r--r--
2025-06-22 08:17
GameLog.php
520
B
-rw-r--r--
2024-05-12 01:18
GameplayBonusLog.php
119
B
-rw-r--r--
2025-07-02 11:28
Gateway.php
1.07
KB
-rw-r--r--
2024-05-09 05:39
GatewayCurrency.php
756
B
-rw-r--r--
2024-05-20 14:47
GeneralSetting.php
832
B
-rw-r--r--
2025-04-22 10:59
GuessBonus.php
215
B
-rw-r--r--
2022-08-25 21:59
Language.php
109
B
-rw-r--r--
2024-05-09 05:39
MineBonus.php
180
B
-rw-r--r--
2023-12-24 22:27
NotificationLog.php
232
B
-rw-r--r--
2024-05-09 05:39
NotificationTemplate.php
182
B
-rw-r--r--
2024-05-09 05:39
Page.php
164
B
-rw-r--r--
2024-05-09 05:39
PasswordReset.php
191
B
-rw-r--r--
2024-05-09 05:39
Referral.php
214
B
-rw-r--r--
2022-09-02 01:16
Subscriber.php
111
B
-rw-r--r--
2024-05-09 05:39
SupportAttachment.php
492
B
-rw-r--r--
2024-05-09 05:39
SupportMessage.php
460
B
-rw-r--r--
2024-05-09 05:39
SupportTicket.php
1.8
KB
-rw-r--r--
2025-06-22 09:33
Transaction.php
193
B
-rw-r--r--
2024-05-09 05:39
UpdateLog.php
154
B
-rw-r--r--
2024-05-09 05:39
User.php
3.29
KB
-rw-r--r--
2025-06-30 10:53
UserLogin.php
190
B
-rw-r--r--
2024-05-09 05:39
WithdrawMethod.php
313
B
-rw-r--r--
2024-05-09 05:39
Withdrawal.php
1.57
KB
-rw-r--r--
2024-05-09 05:39
Save
Rename
<?php namespace App\Models; use App\Constants\Status; use App\Traits\UserNotify; use Illuminate\Database\Eloquent\Casts\Attribute; use Illuminate\Foundation\Auth\User as Authenticatable; use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens, UserNotify; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', 'ver_code', 'balance', 'kyc_data', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', 'kyc_data' => 'object', 'ver_code_send_at' => 'datetime', ]; protected $data = [ 'data' => 1, ]; public function loginLogs() { return $this->hasMany(UserLogin::class); } public function transactions() { return $this->hasMany(Transaction::class)->orderBy('id', 'desc'); } public function deposits() { return $this->hasMany(Deposit::class)->where('status', '!=', Status::PAYMENT_INITIATE); } public function withdrawals() { return $this->hasMany(Withdrawal::class)->where('status', '!=', Status::PAYMENT_INITIATE); } public function tickets() { return $this->hasMany(SupportTicket::class); } public function referrer() { return $this->belongsTo(self::class, 'ref_by'); } public function referrals() { return $this->hasMany(self::class, 'ref_by'); } public function allReferrals() { return $this->referrals()->with('referrer'); } public function gameLogs() { return $this->hasMany(GameLog::class); } public function fullname(): Attribute { return new Attribute( get: fn() => $this->firstname . ' ' . $this->lastname, ); } public function mobileNumber(): Attribute { return new Attribute( get: fn() => $this->dial_code . $this->mobile, ); } // SCOPES public function scopeActive($query) { return $query->where('status', Status::USER_ACTIVE)->where('ev', Status::VERIFIED)->where('sv', Status::VERIFIED); } public function scopeBanned($query) { return $query->where('status', Status::USER_BAN); } public function scopeEmailUnverified($query) { return $query->where('ev', Status::UNVERIFIED); } public function scopeMobileUnverified($query) { return $query->where('sv', Status::UNVERIFIED); } public function scopeKycUnverified($query) { return $query->where('kv', Status::KYC_UNVERIFIED); } public function scopeKycPending($query) { return $query->where('kv', Status::KYC_PENDING); } public function scopeEmailVerified($query) { return $query->where('ev', Status::VERIFIED); } public function scopeMobileVerified($query) { return $query->where('sv', Status::VERIFIED); } public function scopeWithBalance($query) { return $query->where('balance', '>', 0); } public function deviceTokens() { return $this->hasMany(DeviceToken::class); } }