← Back to reports
@can('reports.export') @endcan
Purchase Orders
{{ $totals->count }}
Total Purchased
{{ number_format($totals->total, 2) }}
@if ($bySupplier->isNotEmpty())

By Supplier

@foreach ($bySupplier as $row)
{{ $row->supplier_name }} {{ $row->count }} orders · {{ number_format($row->total, 2) }}
@endforeach
@endif
@if ($orders->isEmpty()) @else
@foreach ($orders as $po) @endforeach
PO Number Date Supplier Warehouse Total
{{ $po->po_number }} {{ $po->order_date->format('d M Y') }} {{ $po->supplier->name }} {{ $po->warehouse->name }} {{ number_format($po->total, 2) }}
{{ $orders->links() }}
@endif