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 : Business.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Business extends Model { /** * The table associated with the model. * * @var string */ protected $table = 'business'; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id', 'woocommerce_api_settings']; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = ['woocommerce_api_settings']; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'ref_no_prefixes' => 'array', 'enabled_modules' => 'array', 'email_settings' => 'array', 'sms_settings' => 'array', 'common_settings' => 'array', 'weighing_scale_setting' => 'array' ]; /** * Returns the date formats */ public static function date_formats() { return [ 'd-m-Y' => 'dd-mm-yyyy', 'm-d-Y' => 'mm-dd-yyyy', 'd/m/Y' => 'dd/mm/yyyy', 'm/d/Y' => 'mm/dd/yyyy' ]; } /** * Get the owner details */ public function owner() { return $this->hasOne(\App\User::class, 'id', 'owner_id'); } /** * Get the Business currency. */ public function currency() { return $this->belongsTo(\App\Currency::class); } /** * Get the Business currency. */ public function locations() { return $this->hasMany(\App\BusinessLocation::class); } /** * Get the Business printers. */ public function printers() { return $this->hasMany(\App\Printer::class); } /** * Get the Business subscriptions. */ public function subscriptions() { return $this->hasMany('\Modules\Superadmin\Entities\Subscription'); } /** * Creates a new business based on the input provided. * * @return object */ public static function create_business($details) { $business = Business::create($details); return $business; } /** * Updates a business based on the input provided. * @param int $business_id * @param array $details * * @return object */ public static function update_business($business_id, $details) { if (!empty($details)) { Business::where('id', $business_id) ->update($details); } } public function getBusinessAddressAttribute() { $location = $this->locations->first(); $address = $location->landmark . ', ' .$location->city . ', ' . $location->state . '<br>' . $location->country . ', ' . $location->zip_code; return $address; } }
Close