ID Miembro
@php if (!function_exists('formatear_documento')) { function formatear_documento($tipo, $cedula) { if (!$cedula) return ''; $num = number_format((int) $cedula, 0, '', '.'); return $tipo . '-' . $num; } } @endphp {{ formatear_documento($member->tipo_documento ?? 'V', $member->cedula) }}
Fecha de Emisión
@if($member->fecha_emision) {{ \Carbon\Carbon::parse($member->fecha_emision)->format('d/m/Y') }} @endif
Fecha de Expiración
@if($member->fecha_vencimiento) {{ \Carbon\Carbon::parse($member->fecha_vencimiento)->format('d/m/Y') }} @endif
Número de carnet
{{ $member->numero_carnet ?? 'N/A' }}