@extends('layout.main') @section('contenido')
|
ID
|
Impuesto
|
Artículo |
Precio
|
Cantidad
|
Subtotal
|
|---|---|---|---|---|---|
| {{ $detalle->idarticulo }} | {{ $detalle->tipo_impuesto }} | @foreach ($articulos as $articulo) @if ($detalle->idarticulo == $articulo->idarticulo) {{ $articulo->nombre }} @endif @endforeach | {{ number_format($detalle->precio, 0, ',', '.') }} | {{ number_format($detalle->cantidad, 0, ',', '.') }} | {{ number_format($detalle->subtotal, 0, ',', '.') }} |