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