|
NOMBRE:
|
{{$factfind->cliente->nombres}} {{$factfind->cliente->apellidos}}
|
|
|
NACIMIENTO:
|
{{date('m-d-Y', strtotime($factfind->cliente->fecha_nacimiento))}}
|
|
|
NACIONALIDAD:
|
{{$factfind->cliente->pais_titular->nombre}}
|
|
|
PEP:
|
@if ($factfind->cliente->pep == "1")
SÍ
@else
NO
@endif
|
|
|
CÓNYUGE:
|
@if ($factfind->cliente->nombres_conyuge)
{{$factfind->cliente->nombres_conyuge}} {{$factfind->cliente->apellidos_conyuge}}
@else
@endif
|
|
|
NACIMIENTO:
|
@if ($factfind->cliente->fecha_nacimiento_conyuge)
{{date('m-d-Y', strtotime($factfind->cliente->fecha_nacimiento_conyuge))}}
@else
@endif
|
|
|
NACIONALIDAD:
|
@if ($factfind->cliente->pais_conyuge)
{{$factfind->cliente->pais_conyuge->nombre}}
@else
@endif
|
|
|
PEP:
|
@if ($factfind->cliente->pep_conyuge == "1")
SÍ
@else
NO
@endif
|
|
|
HIJOS
|
|
NOMBRE
|
EDAD
|
APORTE INICIAL DESDE AHORROS ACTUALES
|
COSTOS DE EDUCACIÓN + COSTOS DE VIDA (sin inflación)
|
COSTOS DE EDUCACIÓN + COSTOS DE VIDA (con inflación)
|
AHORRO MENSUAL
|
@foreach ($factfind->cliente->hijos as $item)
|
{{$item->nombres_apellidos}}
|
{{Carbon\Carbon::parse($item->fecha_nacimiento)->age}}
|
{{number_format($item->plan_actual,2)}}
|
{{number_format($item->necesidades_futuras + $item->gastos_vivienda,2)}}
|
{{number_format($item->total_con_inflacion,2)}}
|
{{number_format($item->ahorro_mensual,2)}}
|
@endforeach
|
Ahorro mensual *
|
USD {{number_format($factfind->cliente->hijos()->sum("ahorro_mensual"),2)}}
|
|
% de la meta cubierta por el crecimiento *
|
@php
$info_monto_cubierto = $factfind->monto_cubierto_inversion();
@endphp
USD {{number_format($info_monto_cubierto['monto'],2)}} ({{number_format($info_monto_cubierto['porcentaje'],2)}} %)
|
|
* Estos cálculos son proyecciones, no son cifras garantizados y el reslultadio puede ser diferente |
@endif
|
CARGO
|
@if ($factfind->empleo && $factfind->empleo->cargo)
{{$factfind->empleo->cargo}}
@else
@endif
|
|
|
EMPLEADOR
|
@if ($factfind->empleo && $factfind->empleo->empleador)
{{$factfind->empleo->empleador}}
@else
@endif
|
|
|
ÚLTIMA EMPRESA
|
@if ($factfind->empleo && $factfind->empleo->ultima_empresa)
{{$factfind->empleo->ultima_empresa}}
@else
@endif
|
|
|
DESDE
|
@if ($factfind->empleo && $factfind->empleo->trabaja_desde)
{{$factfind->empleo->trabaja_desde}}
@else
@endif
|
|
|
SALARIO / INGRESO MENSUAL NETO
|
@if ($factfind->empleo && $factfind->empleo->salario_mensual)
{{number_format($factfind->empleo->salario_mensual,2)}}
@else
@endif
|
|
|
BONOS / AGUINALDO
|
@if ($factfind->empleo && $factfind->empleo->bonos_aguinaldos)
{{number_format($factfind->empleo->bonos_aguinaldos,2)}}
@else
@endif
|
|
|
TRABAJO DE CONYUGUE
|
@if ($factfind->empleo && $factfind->empleo->cargo_conyuge)
{{$factfind->empleo->cargo_conyuge}}
@else
@endif
|
|
|
EMPLEADOR
|
@if ($factfind->empleo && $factfind->empleo->empleador_conyuge)
{{$factfind->empleo->empleador_conyuge}}
@else
@endif
|
|
|
SALARIO / INGRESO MENSUAL NETO
|
@if ($factfind->empleo && $factfind->empleo->salario_mensual_conyuge)
{{number_format($factfind->empleo->salario_mensual_conyuge,2)}}
@else
@endif
|
|
|
BONOS / AGUINALDO
|
@if ($factfind->empleo && $factfind->empleo->bonos_aguinaldos_conyuge)
{{number_format($factfind->empleo->bonos_aguinaldos_conyuge,2)}}
@else
@endif
|
|
@if ($factfind->empleo && $factfind->empleo->ultima_empresa)
{{$factfind->empleo->notas}}
@else
@endif
|
GASTOS DEL MES
|
@php
$excedente_mensual = $factfind->total_ingresos() - $factfind->total_gastos();
@endphp
Super
@if ($factfind->gastos && $factfind->gastos->supermercado)
{{$factfind->gastos->supermercado}}
@else
@endif
|
Luz/agua
@if ($factfind->gastos && $factfind->gastos->luz_agua)
{{$factfind->gastos->luz_agua}}
@else
@endif
|
Auto
@if ($factfind->gastos && $factfind->gastos->transporte)
{{$factfind->gastos->transporte}}
@else
@endif
|
Hipoteca
@if ($factfind->gastos && $factfind->gastos->hipoteca)
{{$factfind->gastos->hipoteca}}
@else
@endif
|
Cuidado personal
@if ($factfind->gastos && $factfind->gastos->cuidado_personal)
{{$factfind->gastos->cuidado_personal}}
@else
@endif
|
Ayuda Familiar
@if ($factfind->gastos && $factfind->gastos->ayuda_familiar)
{{$factfind->gastos->ayuda_familiar}}
@else
@endif
|
Comida
@if ($factfind->gastos && $factfind->gastos->comida)
{{$factfind->gastos->comida}}
@else
@endif
|
Tel/Cel/Int/TV
@if ($factfind->gastos && $factfind->gastos->telefono_internet_tv)
{{$factfind->gastos->telefono_internet_tv}}
@else
@endif
|
Seguros
@if ($factfind->gastos && $factfind->gastos->seguros)
{{$factfind->gastos->seguros}}
@else
@endif
|
Deporte
@if ($factfind->gastos && $factfind->gastos->deporte)
{{$factfind->gastos->deporte}}
@else
@endif
|
Servicios
@if ($factfind->gastos && $factfind->gastos->servicios)
{{$factfind->gastos->servicios}}
@else
@endif
|
Otros
@if ($factfind->gastos && $factfind->gastos->otros)
{{$factfind->gastos->otros}}
@else
@endif
|
Escuela
@if ($factfind->gastos && $factfind->gastos->escuela)
{{$factfind->gastos->escuela}}
@else
@endif
|
Gasolina
@if ($factfind->gastos && $factfind->gastos->gasolina)
{{$factfind->gastos->gasolina}}
@else
@endif
|
Renta
@if ($factfind->gastos && $factfind->gastos->renta)
{{$factfind->gastos->renta}}
@else
@endif
|
Vacaciones
@if ($factfind->gastos && $factfind->gastos->vacaciones_esparcimiento)
{{$factfind->gastos->vacaciones_esparcimiento}}
@else
@endif
|
Préstamos
@if ($factfind->gastos && $factfind->gastos->prestamos)
{{$factfind->gastos->prestamos}}
@else
@endif
|
|
TOTAL: {{number_format($factfind->total_ingresos(),2)}}
|
EXCENDENTE MENSUAL {{number_format($excedente_mensual,2)}}
|
CONOCE OTRO ASESOR PATRIMONIAL O AGENTE DE SEGUROS
{{$factfind->patrimonio_proteccion && $factfind->patrimonio_proteccion->conoce_otro_asesor}}
@if ($factfind->prioridad_riesgo_inversion)
{{$factfind->prioridad_riesgo_inversion->notas_prioridades}}
@else
@endif
|
INGRESO MENSUAL DESEADO
@if ($factfind->calculo_retiro && $factfind->calculo_retiro->ingreso_deseado)
{{$factfind->calculo_retiro->ingreso_deseado}}
@else
$ 0.00
@endif
|
|
|
INGRESO MENSUAL FUTURO
@if ($factfind->calculo_retiro)
$ {{number_format($factfind->calculo_retiro->ingreso_futuro,2)}}
@else
$ 0.00
@endif
|
|
|
INGRESO ANUAL FUTURO
@if ($factfind->calculo_retiro)
@php
$ingreso_mensual = $valor_inflacion * $factfind->calculo_retiro->ingreso_deseado;
$ingreso_futuro_anual = $ingreso_mensual * 12;
@endphp
$ {{number_format($ingreso_futuro_anual,2)}}
@else
$ 0.00
@endif
|
|
|
APORTAIÓN VOLUNTARIA
@if ($factfind->calculo_retiro)
$ {{number_format($factfind->calculo_retiro->aportacion_inicial,2)}}
@else
$ 0.00
@endif
|
|
|
AHORRO MENUSAL PROMEDIO
@if ($factfind->calculo_retiro)
$ {{number_format($factfind->calculo_retiro->ahorro_mensual_promedio,2)}}
@else
$ 0.00
@endif
|
|
@if($factfind->requisitos)
{{$factfind->requisitos->notas}}
@else
@endif
DECLARO QUE ESTE ES UN REFLEJO VERDADERO DE MIS CIRCUNSTANCIAS PERSONALES Y FINANCIERAS.
BASADO EN ESTA INFORMACIÓN AUTORIZO A MI ASESOR BUSCAR LAS OPCIONES MAS PERTINENTES A
MI PERFIL Y ESTOY DE ACUERDO CON EL AVISO DE PRIVACIDAD EN NUESTRA PÁGINA WEB.
{{--