@extends('layouts.cliente.app') @section('title','Detalhes da Proforma') @section('content')
{{-- HEADER --}}

Proforma {{ $proforma->numero }}

Emitida em {{ $proforma->created_at->format('d/m/Y H:i') }}
{{-- 👁️ VER PDF --}} Ver PDF ← Voltar
{{-- CARD INFO --}}
Cliente
{{ $proforma->cliente_nome }}
NIF
{{ $proforma->cliente_nif ?? '—' }}
Telefone
{{ $proforma->cliente_telefone ?? '—' }}
Total da Proforma
{{ number_format($proforma->total,2,',','.') }} Kz
Endereço
{{ $proforma->cliente_endereco ?? '—' }}
{{-- PREVIEW EMBED (UX PREMIUM) --}}
Visualização rápida
@endsection