@if ($aluno)
{{-- Nome --}}
Nome Completo
{{ $aluno->nome ?? '---' }} {{ $aluno->sobrenome ?? '' }}
{{-- Documento --}}
Documento
{{ $aluno->doc_tipo ?? '---' }}
{{ putMask($aluno->doc_num ?? '', $aluno->doc_tipo ?? 'cpf') }}
{{-- Email --}}
Email
{{ $aluno->email ?? '---' }}
@if (!$compact)
{{-- Nascimento --}}
Nascimento
{{ ($aluno->nascimento ?? false) ? dataData($aluno->nascimento, true) : '---' }}
{{-- Contato --}}
Contato
{{ ($aluno->tel_cod ?? false) ? '+' . $aluno->tel_cod : '' }}
{{ $aluno->tel_ddd ?? '' }}
{{ putMask($aluno->tel_num ?? '', 'tel_num') }}
@endif
@endif
{{-- Slot para conteúdo adicional --}}
{{ $slot }}