{{ __('Supplier-wise Purchases Report') }}

{{ __('Supplier-wise Purchases Report') }}

{{ __('Reports') }} › {{ __('Total purchased per supplier over the selected period.') }}

@include('reports.inventory._filters', ['showSupplier' => true])
{{ __('Total Cost') }}
{{ number_format($totals['cost'], 2) }}
@if ($rows->isEmpty())
{{ __('No purchases match the selected filters.') }}
@else @foreach ($rows as $row) @endforeach
{{ __('Supplier') }} {{ __('Quantity Purchased') }} {{ __('Total Cost') }} {{ __('Deliveries') }}
{{ $row['supplier']->name }} {{ $row['quantityPurchased'] }} {{ number_format($row['cost'], 2) }} {{ $row['movementCount'] }}
@endif