@extends('shared/layout') @section('title','Detalle de ordenes') @section('content')
@foreach( $orden_detalle as $item) @endforeach
Id Cantidad Detalle Valor Unitario Total
{{$item->id}} {{$item->cantidad}} {{$item->detalleOrden}} ${{number_format($item->valor_unitario)}} ${{number_format($item->total)}}
Total orden: ${{$total}}
@endsection