|
Company Information
@if($company && $company->logo_path)
Name: {{ $company->name ?? 'Company Name' }}
Address: {{ $company->address ?? 'Company Address' }}
Phone: {{ $company->phone ?? 'Company Phone' }}
Email: {{ $company->email ?? 'Company Email' }}
|
Report Information
Period: {{ $dateFrom }} to {{ $dateTo }}
Report Date: {{ date('d M Y') }}
|
| Item Code | Description | Qty Sold | Qty on Hand | Cost Price | Selling Price | Total Cost | Total Selling | Actual Profit & Loss | Ex Total Cost | Ex Total Selling | Ex Profit & Loss |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $data['item']->code }} | {{ $data['item']->description1 }} | {{ number_format($data['qty_sold'], 2) }} | {{ number_format($data['qty_on_hand'], 2) }} | {{ number_format($data['cost_price'], 2) }} | {{ number_format($data['selling_price'], 2) }} | {{ number_format($data['total_cost'], 2) }} | {{ number_format($data['total_selling'], 2) }} | {{ number_format($data['actual_profit_loss'], 2) }} | {{ number_format($data['ex_total_cost'], 2) }} | {{ number_format($data['ex_total_selling'], 2) }} | {{ number_format($data['ex_profit_loss'], 2) }} |
| Grand Totals: | {{ number_format($grandTotals['qty_sold'], 2) }} | {{ number_format($grandTotals['qty_on_hand'], 2) }} | - | - | {{ number_format($grandTotals['total_cost'], 2) }} | {{ number_format($grandTotals['total_selling'], 2) }} | {{ number_format($grandTotals['actual_profit_loss'], 2) }} | {{ number_format($grandTotals['ex_total_cost'], 2) }} | {{ number_format($grandTotals['ex_total_selling'], 2) }} | {{ number_format($grandTotals['ex_profit_loss'], 2) }} | |