@extends('layouts.master') @section('content')
Purchase Order

Purchase Order List Add Purchase Order

@foreach ($purchase_order as $key => $po) @endforeach
S.No Date PONo Supplier Rent Received Item Details Marks Created By Action
{{ $key + 1 }} {{ $po->date }} {{ $po->po_no }} {{ $po->supplier->supplier_name }} {{ $po->rent_recieve }} @foreach ($po->Purchasedetails as $item) @endforeach
Item Name Marka Bori Weight Rate Amount
{{ $item->items_name }} {{ $item->marka }} {{ $item->bori }} {{ $item->weight }} {{ $item->rate }} {{ $item->amount }}
{{ $po->details }} {{ $po->created_by }} Edit Remove
S.No Date PONo Supplier Rent Received Item Details Marks Created By Action
@endsection @push('scripts') @endpush