@extends('layouts.page') @section('head') @include('elements.seo', ['title'=>'Ordenes' ]) @endsection @section('content')

Mi Cuenta

Gestiona tu información personal y pedidos

@forelse ($orders as $order) @php $firstProduct = $order->products->first(); $firstImage = $firstProduct?->product?->images?->first(); @endphp
@if($firstImage) Producto @else @endif

Pedido #{{ $order->id }}

{{ $order->created_at->subHour(5)->format('d M Y') }}

${{ number_format(($order->total + $order->discount) - $order->discount) }}

{{ $order->products_sum_quantity ?? 0 }} artículos

Ver detalles
@csrf
@empty
No tienes pedidos recientes.
@endforelse
{{ $orders->links() }}
@endsection @section('scripts') @endsection