@extends('layouts.master') @section('content')
@if (Session::has('success'))
{{ Session::get('success')['msg'] }}
@endif
@foreach($purchases as $key => $purchase) @endforeach
No# PO Number No. of items Supplier Name Total Amount Remaining Amount Action View
{{ ++$key }} {{ $purchase->serial }} {{ $purchase->items }} {{ $purchase->supplier->name }} {{ $purchase->total_amount }} {{ $purchase->remaining_amount }}
@push('footer-assets') @endpush @endsection