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

Purchase Order List Add Purchase Order

@foreach ($purchase_order as $key => $po) @endforeach
S.No Date PO Number Supplier Total Amount Custom Charges Tax Grand Total Status Item Details Description Created By Created Ay Updated At Action
{{ $key + 1 }} {{ $po->order_date }} {{ $po->po_number }} {{ $po->supplier->supplier_name }} {{ $po->total_amount }} {{ $po->custom_charges }} {{ $po->tax }} {{ $po->grand_total }} @if ($po->status == 'Pending') {{ $po->status }} @elseif($po->status == 'Approved') {{ $po->status }} @elseif($po->status == 'Rejected') {{ $po->status }} @else {{ $po->status }} @endif @foreach ($po->Purchasedetails as $item) @endforeach
Item Name Marka Bori Weight Rate Amount
{{ $item->proCateChild->name }} {{ $item->marka }} {{ $item->bori }} {{ $item->weight }} {{ $item->rate }} {{ $item->amount }}
{{ $po->notes }} {{ $po->createdBy->name }} {{ $po->created_at }} {{ $po->updated_at }} Edit Remove
@endsection @push('scripts') @endpush