@extends('layouts.customer') @section('title', 'Pedido #' . substr($order->uuid, 0, 8)) @section('customer-content')

Pedido #{{ substr($order->uuid, 0, 8) }} {{ ucfirst($order->status == 'pending' ? 'Pendiente' : $order->status) }}

Realizado el {{ $order->created_at->format('d/m/Y \a \l\a\s h:i A') }}

Volver

Artículos

@foreach($order->items as $item)
@if($item->image) {{ $item->product_name }} @else
@endif

{{ $item->product_name }}

{{ $item->quantity }} x ${{ number_format($item->price, 2) }}

${{ number_format($item->quantity * $item->price, 2) }}

@endforeach
Total ${{ number_format($order->total, 2) }}

Datos del Pago

Método {{ str_replace('_', ' ', $order->payment_method) }}
Referencia {{ $order->payment_proof }}
@if($order->bank_name)
Banco Origen {{ $order->bank_name }}
@endif

Información de Envío

Cliente {{ $order->customer_name }}
Teléfono {{ $order->customer_phone }}
Identidad {{ $order->customer_identity }}
@endsection