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

New {{request('type')}}

Purchase details appears in your purchase. Purchase date is used in the dashboard and reports. select the date you expect to pay as the Due Date
@csrf @if($check_purchase == null) @else @endif
Purchase Information
@if($check_purchase == null) @else @endif
Vendor*
Purchase Date
Other Information
Item
Quantity
Rate
UOM
@foreach($purchases as $receipt) @endforeach
Item Details
Sr# Item Rate
{{empty($app->currency) ? GHS : $app->currency}}
Quantity Total
{{empty($app->currency) ? GHS : $app->currency}}
Actions
{{$loop->iteration}}
 

Subtotal

Discount

Total

@convert($purchases->sum('purchase_total'))

@convert(0)

@convert($purchases->sum('purchase_total'))

Note
@endsection