{{-- extend layout --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Orden de compra') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')
Fecha de Creación:

Orden de compra

Proveedor
Cantidad
Producto
Vr. Unitario
Vr. Total
@foreach($purchaseOrders['products'] as $purchase)
@endforeach
Subtotal:
$ {{number_format($purchaseOrders['subtotal'],0,',','.')}} COP
IVA:
$ {{number_format($purchaseOrders['iva'],0,',','.')}} COP
Total:
$ {{number_format($purchaseOrders['totalToPay'],0,',','.')}} COP
@endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @endsection