Inventory Stock Level Report
Company Information
@if($company && $company->logo_path) Company Logo @endif
Name: {{ $company->name ?? 'Company Name' }}
Address: {{ $company->address ?? 'Company Address' }}
Phone: {{ $company->phone ?? 'Company Phone' }}
Email: {{ $company->email ?? 'Company Email' }}
@if($company && $company->vat_no)
VAT No: {{ $company->vat_no }}
@endif @if($company && $company->tin_no)
TIN No: {{ $company->tin_no }}
@endif
Report Information
Period: {{ $dateFrom }} to {{ $dateTo }}
Report Date: {{ date('d M Y') }}
@php $currentItem = null; @endphp @foreach($stockData as $data) @if($currentItem != $data['item']->id) @if($currentItem !== null) @endif @php $currentItem = $data['item']->id; $currentItemCode = $data['item']->code; $currentItemDescription = $data['item']->description1; @endphp @endif @endforeach @if($currentItem !== null) @endif
Item Code Item Description Warehouse Category Qty Available
Total for {{ $currentItemCode }} - {{ $currentItemDescription }} {{ number_format($itemTotals[$currentItem], 2) }}
{{ $data['item']->code }} {{ $data['item']->description1 }} {{ $data['warehouse']->description ?? 'N/A' }} {{ $data['category']->name ?? 'N/A' }} {{ number_format($data['available_quantity'], 2) }}
Total for {{ $currentItemCode }} - {{ $currentItemDescription }} {{ number_format($itemTotals[$currentItem], 2) }}