@extends('admin.admin_dashboard') @section('content')
@csrf
@if(empty($po_facturas_detalle)) NO DATA @else @foreach($po_facturas_detalle as $po_facturas_detalle) @endforeach @endif
@if(empty($po_facturas_detalle)) @else @endif
linea ship Descripción req_date qty uom unit_price ext_price
{{ $po_facturas_detalle->linea}} {{ $po_facturas_detalle->ship}} {{$po_facturas_detalle->description}} {{ $po_facturas_detalle->req_date}} {{ number_format($po_facturas_detalle->qty, 2, '.', ',')}} {{ $po_facturas_detalle->uom}} {{ number_format($po_facturas_detalle->unit_price, 2, '.', ',')}} {{ number_format($po_facturas_detalle->ext_price, 2, '.', ',')}}
@stop