@extends('layouts.app') @section('content')
Volver

Perfil de Cliente

Historial y preferencias

{{ substr($client->name, 0, 1) }}
{{ $rank }}

{{ $client->name }}

{{ $client->address ?? 'Sin dirección' }}

DOCUMENTO:
{{ $client->document_number ?? '-' }}
TELÉFONO:
{{ $client->phone ?? '-' }}
EMAIL:
{{ $client->email ?? '-' }}
Total Gastado

S/ {{ number_format($totalSpent, 2) }}

Visitas

{{ $visitCount }}

Plato Favorito
{{ $favoriteProduct }}
Historial de Pedidos
@forelse($orders as $order) @empty @endforelse
Fecha Folio Mesa Total
{{ $order->created_at->format('d/m/Y') }}
{{ $order->created_at->format('H:i') }}
#{{ str_pad($order->id, 5, '0', STR_PAD_LEFT) }} {{ $order->table->name ?? 'Barra' }} S/ {{ number_format($order->total, 2) }}
Aún no tiene pedidos registrados.
@endsection