@extends('layouts.app') @section('content')

Purchase Item Details

Back
Item: {{ $itemKey }}
Date Range: {{ $from }} to {{ $to }}
@forelse($details as $d) @empty @endforelse
Date Invoice Provider Item Qty Unit Price Total Actions
{{ $d['bill_date'] }} {{ $d['bill_no'] ?? $d['invoice_id'] }} {{ $d['provider_name'] }} {{ $d['item_name'] }} {{ number_format($d['quantity'], 2) }} BDT {{ number_format($d['unit_price'], 2) }} BDT {{ number_format($d['total_amount'], 2) }} @if(!empty($d['invoice_id'])) @endif
No records found for this item in the selected date range.
@endsection