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\UserDetail; use Laravel\Sanctum\HasApiTokens; use Spatie\Permission\Traits\HasRoles; use Illuminate\Notifications\Notifiable; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use HasFactory, Notifiable, HasApiTokens, HasRoles; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', 'dp_url', 'company_name', 'phone_number' ]; public function scopeFilter($query){ if(request()->id){ $query->where('id', request()->id); } if(request()->date){ $query->where('created_at','>=',request()->date[0]) ->where('created_at','<=',request()->date[1]); } return $query; } /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function detail() { return $this->hasOne(UserDetail::class, 'user_id', 'id'); } }