@extends('layouts.customer') @section('title', 'Mis Pedidos') @section('customer-content')

Historial de Pedidos

@forelse($orders as $order) @empty @endforelse
Pedido Fecha Artículos Total Estado
#{{ substr($order->uuid, 0, 8) }} {{ $order->created_at->format('d/m/Y h:i A') }} {{ $order->items_count ?? $order->items->count() }} items ${{ number_format($order->total, 2) }} {{ ucfirst($order->status == 'pending' ? 'Pendiente' : $order->status) }} Ver Detalles

No tienes pedidos registrados.

Explorar Productos
@if($orders->hasPages())
{{ $orders->links() }}
@endif
@endsection