⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cleanexg
/
public_html
/
core
/
app
/
Edit File: User.php
<?php namespace App; use Illuminate\Notifications\Notifiable; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'fname', 'lname', 'email', 'photo', 'username', 'password', 'number', 'city', 'state', 'address', 'country', 'billing_fname', 'billing_lname', 'billing_email', 'billing_photo', 'billing_number', 'billing_city', 'billing_state', 'billing_address', 'billing_country', 'shpping_fname', 'shpping_lname', 'shpping_email', 'shpping_photo', 'shpping_number', 'shpping_city', 'shpping_state', 'shpping_address', 'shpping_country', 'status', 'verification_link', 'email_verified', ]; /** * 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 conversations() { return $this->hasMany('App\Conversation'); } public function orders() { return $this->hasMany('App\ProductOrder'); } public function order_items() { return $this->hasMany('App\OrderItem'); } public function courseOrder() { return $this->hasMany('App\CoursePurchase'); } public function course_reviews() { return $this->hasMany('App\CourseReview'); } public function donation_details() { return $this->hasMany('App\DonationDetail'); } public function event_details() { return $this->hasMany('App\EventDetail'); } public function package_orders() { return $this->hasMany('App\PackageOrder'); } public function product_reviews() { return $this->hasMany('App\ProductReview'); } public function tickets() { return $this->hasMany('App\Ticket'); } public function subscription() { return $this->hasOne('App\Subscription'); } }
Simpan