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.78
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 /
signaltechdemo1.com /
app /
Exports /
[ HOME SHELL ]
Name
Size
Permission
Action
ExpenseWarehouseReportExport.p...
1.29
KB
-rw-r--r--
ProductExcelExport.php
888
B
-rw-r--r--
ProductPurchaseReportExport.ph...
606
B
-rw-r--r--
ProductPurchaseReturnReportExp...
672
B
-rw-r--r--
ProductSaleReportExport.php
569
B
-rw-r--r--
ProductSaleReturnReportExport....
637
B
-rw-r--r--
PurchaseReportExport.php
1.49
KB
-rw-r--r--
PurchaseReturnWarehouseReportE...
1.45
KB
-rw-r--r--
PurchasesWarehouseReportExport...
855
B
-rw-r--r--
SaleReportExport.php
1.37
KB
-rw-r--r--
SaleReturnWarehouseReportExpor...
1.18
KB
-rw-r--r--
SalesWarehouseReportExport.php
1.11
KB
-rw-r--r--
StockReportExport.php
1013
B
-rw-r--r--
TopSellingProductReportExport....
2.54
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SaleReportExport.php
<?php namespace App\Exports; use App\Models\FiscalYear; use App\Models\Sale; use Maatwebsite\Excel\Concerns\FromView; class SaleReportExport implements FromView { public function view(): \Illuminate\Contracts\View\View { $startDate = request()->get('start_date'); $endDate = request()->get('end_date'); $userId = request()->get('user_id'); $query = Sale::with(['saleItems', 'warehouse', 'customer', 'payments']); if ($startDate != 'null' && $endDate != 'null' && $startDate && $endDate) { $query = $query->whereDate('created_at', '>=', $startDate) ->whereDate('created_at', '<=', $endDate); } if ($userId != 'null' && $userId) { $query = $query->where('user_id', $userId); } if (isFiscalYearFilterEnabled()) { $fiscalYearId = request()->get('fiscal_year_id'); $fiscalYear = !empty($fiscalYearId) && $fiscalYearId != 'null' ? FiscalYear::find($fiscalYearId) : FiscalYear::where('is_active', true)->first(); if ($fiscalYear) { $query->whereDate('date', '>=', $fiscalYear->start_date) ->whereDate('date', '<=', $fiscalYear->end_date); } } $sales = $query->get(); return view('excel.all-sale-report-excel', ['sales' => $sales]); } }
Close