@if ($aluno ?? false)

{{ $aluno->nome }} {{ $aluno->sobrenome }}

Código: {{ $aluno->aluno_codigo ?? 'N/A' }} {{ $aluno->email ?? '---' }}

Voltar
{{-- ALUNO --}}

Informações do Aluno

Dados cadastrais e de contato

@include('components.alerts.ead-alerts-aluno')
{{-- Código do Aluno --}}
Código do Aluno
{{ $aluno->aluno_codigo ?? '--' }}
{{-- Nome Completo --}}
Nome Completo
{{ $aluno->nome ?? '--' }} {{ $aluno->sobrenome ?? '--' }}
{{-- Data de Nascimento --}}
Data de Nascimento
{{ ($aluno->nascimento ?? false) ? dataData($aluno->nascimento, age:true) : '--' }}
{{-- Documento --}}
{{ $aluno->doc_tipo ?? 'DOCUMENTO' }}
{{ putMask($aluno->doc_num ?? '---', $aluno->doc_tipo ?? null) }}
{{-- Estado Civil --}}
Estado Civil
{{ $aluno->estado_civil ?? '--' }}
{{-- Sexo --}}
Sexo
{{ $aluno->sexo ?? '--' }}
{{-- Telefone --}}
Telefone
@if ($aluno->tel_num ?? false) @endif
{{ $aluno->tel_cod ? '+'.$aluno->tel_cod : null }}{{ $aluno->tel_ddd ? ' '.$aluno->tel_ddd : null }} {{ $aluno->tel_num ?? '--' }}
{{-- Email --}}
Email
@if ($aluno->email ?? false) @endif
{{ $aluno->email ?? '--' }}
{{-- Notificações --}}
Notificações
Email {{ ($aluno->notifica_email ?? false) ? 'Ativo' : 'Inativo' }}
WhatsApp {{ ($aluno->notifica_wapp ?? false) ? 'Ativo' : 'Inativo' }}
SMS {{ ($aluno->notifica_sms ?? false) ? 'Ativo' : 'Inativo' }}
{{-- PCD --}}
PCD
{{ ($aluno->pcd ?? false) ? 'Sim' : 'Não' }}
{{-- Como Conheceu --}}
Como Conheceu
{{ $aluno->matricula_origem ?? '---' }}
{{-- Termos --}}
Aceite Termos
{{ ($aluno->termos_aceite ?? false) ? 'Sim' : 'Não' }}
{{-- Endereço --}}

Endereço

{{-- CEP --}}
CEP
{{ putMask($aluno->endereco_cep ?? '---', 'cep') }}
{{-- Endereço --}}
Endereço
{{ $aluno->endereco ?? '---' }}
{{-- Número --}}
Número
{{ $aluno->endereco_num ?? '---' }}
{{-- Complemento --}}
Complemento
{{ $aluno->endereco_complemento ?? '---' }}
{{-- Bairro --}}
Bairro
{{ $aluno->endereco_bairro ?? '---' }}
{{-- Cidade / Estado --}}
Cidade / Estado
{{ $aluno->endereco_cidade ?? '---' }} / {{ $aluno->endereco_estado ?? '---' }}
{{-- País --}}
País
{{ listEnderecoPais($aluno->endereco_pais ?? '55')['pais'] ?? '--' }}
{{-- Referência --}}
Referência
{{ $aluno->endereco_referencia ?? '--' }}
@if ($aluno->observacao ?? false) {{-- Observações --}}
Observações
{{ $aluno->observacao }}
@endif
{{-- MATRÍCULAS DO ALUNO --}}

Matrículas do Aluno

Histórico de matrículas em cursos

@php $matriculasAluno = \App\Models\Matricula\Matricula::where('aluno_id', $aluno->id) ->with(['curso', 'turma', 'situacao']) ->orderBy('created_at', 'desc') ->get(); @endphp @if($matriculasAluno->count() > 0)
@foreach($matriculasAluno as $mat) @endforeach
Matrícula Curso Turma Data Situação Valor Ações
{{ $mat->matricula_num ?? 'N/A' }}
{{ $mat->curso->nome ?? 'N/A' }}
{{ $mat->turma->turma_nome ?? 'N/A' }}
{{ $mat->turma->turma_codigo ?? '' }}
{{ $mat->matricula_datahora ? dataCarbon($mat->matricula_datahora, 'd/m/Y') : ($mat->created_at ? $mat->created_at->format('d/m/Y') : 'N/A') }}
@if($mat->situacao) @php $situacaoSlug = $mat->situacao->slug ?? ''; $corClass = 'bg-yellow-100 text-yellow-700 dark:bg-yellow-900/30 dark:text-yellow-400'; if($mat->situacao->matriculado_ativo || in_array($situacaoSlug, ['matriculado', 'matriculado-bolsa-integral', 'matriculado-bolsa-colaborador'])) { $corClass = 'bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400'; } elseif(str_contains($situacaoSlug, 'cancelad') || $situacaoSlug == 'cancelado') { $corClass = 'bg-red-100 text-red-700 dark:bg-red-900/30 dark:text-red-400'; } elseif($situacaoSlug == 'trancado' || str_contains($situacaoSlug, 'trancad')) { $corClass = 'bg-orange-100 text-orange-700 dark:bg-orange-900/30 dark:text-orange-400'; } @endphp {{ $mat->situacao->nome }} @endif
{{ convertMoney($mat->matricula_valor_final ? $mat->matricula_valor_final : 0, 'R$ ') }}
@if(($mat->matricula_valor_desconto ?? 0) > 0)
{{ convertMoney($mat->matricula_valor ?? 0, 'R$ ') }}
@endif
Ver
{{-- Rodapé com totais --}}
Total: {{ $matriculasAluno->count() }} matrícula(s)
{{-- Valor total: {{ convertMoney($matriculasAluno->sum('matricula_valor_final') ?? 0, 'R$ ') }} --}}
@else

Nenhuma matrícula encontrada para este aluno.

@endif

Ref.Aluno: {{ $aluno->id ?? 'null' }}

{{-- Modal para alteração de dados do aluno --}}
ALTERAR INFORMAÇÕES DO ALUNO
Carregando...
@include('components.alerts.ead-alerts-aluno')

Notificações:


Endereço:


Informações adicionais:

@endif