@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') Purchase Report @endslot @slot('li_1') Manage Your Purchase Report @endslot @endcomponent
@foreach($purchasesReport as $purchase) @endforeach
Product Name Purchase Amount Purchase Qty Instock Qty
{{ $purchase->product_name }} Tsh{{ number_format($purchase->buying_price, 2) }} {{ $purchase->qty }} {{ $purchase->qty }}
@endsection