@extends('layouts.backend') @section('title', 'Viendo pedido #'.$order->id) @section('section', 'Pedidos') @section('content') {!! Form::model($order, [ 'route' => ['backend.orders.update', $order->id], 'class' => 'form-horizontal', ]) !!}

@yield('title')

Nombre Email CI Empresa
{{ $order->user->name }} {{ $order->user->email }} {{ $order->user->user_data->document ?? null }} {{ $order->user->user_data->company->title ?? null }}
@foreach($order->items as $item) @endforeach
# Producto Cantidad Precio Total
{{ $loop->iteration }} {{ $item->name }} {{ $item->qty }} Gs. {{ num_format($item->price) }} Gs. {{ num_format($item->qty * $item->price) }}
Total Gs. {{ num_format($order->total) }}
{!! Form::close() !!} @endsection @section('scripts') @endsection