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 /
.trash /
core.1 /
app /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Admin.php
384
B
-rw-r--r--
2023-12-27 04:45
AdminPasswordReset.php
219
B
-rw-r--r--
2023-12-27 04:45
Advertise.php
180
B
-rw-r--r--
2023-12-27 04:45
Comment.php
292
B
-rw-r--r--
2023-12-27 04:45
Currency.php
208
B
-rw-r--r--
2023-12-27 04:45
Deposit.php
454
B
-rw-r--r--
2023-12-27 04:45
EmailTemplate.php
276
B
-rw-r--r--
2023-12-27 04:45
Gateway.php
326
B
-rw-r--r--
2023-12-27 04:45
GeneralSetting.php
311
B
-rw-r--r--
2023-12-27 04:45
KycVerify.php
180
B
-rw-r--r--
2023-12-27 04:45
Language.php
133
B
-rw-r--r--
2023-12-27 04:45
LoginSecurity.php
228
B
-rw-r--r--
2023-12-27 04:45
MoneyTransfer.php
419
B
-rw-r--r--
2023-12-27 04:45
Page.php
268
B
-rw-r--r--
2023-12-27 04:45
Payment.php
600
B
-rw-r--r--
2023-12-27 04:45
Plan.php
316
B
-rw-r--r--
2023-12-27 04:45
Refferal.php
347
B
-rw-r--r--
2023-12-27 04:45
RefferedCommission.php
577
B
-rw-r--r--
2023-12-27 04:45
SectionData.php
392
B
-rw-r--r--
2023-12-27 04:45
Subscriber.php
246
B
-rw-r--r--
2023-12-27 04:45
Ticket.php
392
B
-rw-r--r--
2023-12-27 04:45
TicketReply.php
278
B
-rw-r--r--
2023-12-27 04:45
Time.php
204
B
-rw-r--r--
2023-12-27 04:45
Transaction.php
391
B
-rw-r--r--
2023-12-27 04:45
User.php
2.66
KB
-rw-r--r--
2023-12-27 04:45
UserInterest.php
429
B
-rw-r--r--
2023-12-27 04:45
Withdraw.php
476
B
-rw-r--r--
2023-12-27 04:45
WithdrawGateway.php
334
B
-rw-r--r--
2023-12-27 04:45
Save
Rename
<?php namespace App\Models; use App\Traits\Multitenantable; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var string[] */ protected $guarded = [ ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', 'address' => 'object', 'last_login' =>'datetime', 'kyc_infos' => 'array' ]; public function getFullNameAttribute($value) { return $this->fname.' '.$this->lname; } public function loginSecurity() { return $this->hasOne(LoginSecurity::class); } public function payments() { return $this->hasMany(Payment::class,'user_id'); } public function deposits() { return $this->hasMany(Deposit::class,'user_id'); } public function activeDeposits() { return $this->hasMany(Deposit::class,'user_id')->where('payment_status', 1); } public function referrer() { return $this->belongsTo(User::class, 'reffered_by', 'id'); } public function refferals() { return $this->hasMany(User::class,'reffered_by' ); } public function activeRefferals() { return $this->hasMany(User::class,'reffered_by' )->whereHas('activeDeposits'); } public function refferedBy() { return $this->belongsTo(User::class,'reffered_by'); } public function reffer() { return $this->hasMany(User::class,'reffered_by'); } public function interest() { return $this->hasMany(UserInterest::class,'user_id'); } public function commissions() { return $this->hasMany(RefferedCommission::class,'reffered_by'); } public function tickets() { return $this->hasMany(Ticket::class,'user_id'); } public function tradingProfit() { return $this->hasMany(Transaction::class,'user_id')->where('gateway_transaction', 'trading')->where('type', '+'); } public function tradingLose() { return $this->hasMany(Transaction::class,'user_id')->where('gateway_transaction', 'trading')->where('type', '-'); } }