@extends('layouts.admin') @section('content')

{{ $client->name }}

{{ $client->email }}
Back
Client Profile
Support PIN: {{ $client->support_pin }}
Phone: {{ $client->phone ?? '-' }}
Company: {{ $client->company ?? '-' }}
Address: {{ $client->address ?? '-' }}
Legacy CE ID: {{ $client->legacy_clientexec_id ?? '-' }}
Recent Invoices
@forelse($invoices as $inv) @empty @endforelse
# Status Total
{{ $inv->number }} {{ $inv->status }} {{ $inv->currency }} {{ number_format((float)$inv->total, 2) }} Open
No invoices.
Services
@forelse($services as $svc) @empty @endforelse
Type Plan Domain Status
{{ $svc->type }} {{ $svc->plan?->name ?? '-' }} {{ $svc->domain?->domain ?? '-' }} {{ $svc->status }}
No services.
@endsection