| AGE EMPRUNTEUR: |
{{ data_get($clients, '0.age', '') }} |
SITUATION FAM: |
{{ data_get($clients, '0.matrimonial_situation', '') }} |
| AGE CO-EMPRUNTEUR: |
{{ data_get($clients, '1.age', '') }} |
ENFANTS À CHARGE: |
{{ data_get($infants, 'count') }} |
| ANCIENNETÉ PRO EMPRUNTEUR: |
{{ data_get($clients, '0.employment_start_date', '') }} |
@if(data_get($infants, 'ages')) AGE DES ENFANTS: @endif |
{{ data_get($infants, 'ages') }} |
| PROFESSION EMPRUNTEUR: |
{{ data_get($clients, '0.employment_profession', '') }} |
@if(count($clients) > 1)
| ANCIENNETÉ PRO CO-EMPRUNTEUR: |
{{ data_get($clients, '1.employment_start_date', '') }} |
| PROFESSION CO-EMPRUNTEUR: |
{{ data_get($clients, '1.employment_profession', '') }} |
@endif
@foreach($clients as $i => $client)
|
{!! strip_tags(data_get($clients, "$i.fullname")) !!}
|
@endforeach
@foreach($clients as $i => $client)
|
BS |
AI |
@endforeach
@foreach([__('Salary/Pension') => 'monthly', __('Rentals Revenue') => 'property_income', __('Family Allowance') => 'family_allowance'] as $name => $key)
@continue(! (data_get($clients, "0.income.$key") || (data_get($clients, "1.income.$key"))))
@foreach($clients as $i => $client)
| {{ $name }} |
{{ str()->formatDecimal(data_get($client, "income.$key"), 2, ',', '') ?: '' }} |
{{ str()->formatDecimal(data_get($client, "external_data.income.$key"), 2, ',', '') ?: '' }} |
@endforeach
@endforeach
@if(data_get($clients, '0.income.has_other_income') || data_get($clients, '1.income.has_other_income'))
@for($inc = 1; $inc <= 5; $inc++)
@php($ic = $inc == 1? '' : $inc)
@if(data_get($clients, "0.income.other_income{$ic}_id", false) || data_get($clients, "1.income.other_income{$ic}_id", false))
@foreach($clients as $i => $client)
| {{ data_get($client, "income.other_income{$ic}_name") }} |
{{ str()->formatDecimal(data_get($client, "income.other$inc"), 2, ',', '') ?: '' }} |
{{ str()->formatDecimal(data_get($client, "external_data.income.other$inc"), 2, ',', '') ?: '' }} |
@endforeach
@endif
@endfor
@endif
@if(count($claims))
| No |
Ref |
Organisme |
Type |
Mt initial |
Début |
Objet |
Taux |
Mens. |
KRD |
Reprise |
@foreach($debts as $i => $debt)
| {{ $i + 1 }} |
{{ data_get($debt, 'ref') }} |
{{ data_get($debt, 'creditor') }} |
{{ data_get($debt, 'debt_type') }} |
{{ str()->formatDecimal(data_get($debt, 'initial_capital'), 2, ',', '') }} |
{{ data_get($debt, 'start_at_short') }} |
{{ data_get($debt, 'object') }} |
{{ str()->formatDecimal( data_get($debt, 'rate'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt, 'monthly'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt, 'remaining_capital'), 2, ',', '') }} |
{{ data_get($debt, 'recovery') ? __('Yes') : __('No') }} |
@if(data_get($debts, ($i + 1)) && data_get($debt, 'recovery') !== data_get($debts, ($i + 1).'.recovery'))
| Total |
{{ str()->formatDecimal(data_get($debt_totals, 'monthly_no_recovery'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt_totals, 'remaining_capital_no_recovery'), 2, ',', '') }} |
|
| {{ data_get($debt, 'recovery') ? 'À conserver' : 'À reprendre' }} |
@endif
@if(! data_get($debts, ($i + 1)) && data_get($debt, 'recovery'))
| Total |
{{ str()->formatDecimal(data_get($debt_totals, 'monthly_recovery'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt_totals, 'remaining_capital_recovery'), 2, ',', '') }} |
|
@endif
@endforeach
@if(count($temp_debts ?? []))
|
@endif
@foreach($temp_debts as $i => $debt)
|
{{ data_get($debt, 'ref') }} |
{{ data_get($debt, 'creditor') }} |
{{ data_get($debt, 'debt_type') }} |
{{ str()->formatDecimal(data_get($debt, 'initial_capital'), 2, ',', '') }} |
{{ data_get($debt, 'start_at_short') }} |
{{ data_get($debt, 'object') }} |
{{ str()->formatDecimal(data_get($debt, 'rate'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt, 'monthly'), 2, ',', '') }} |
{{ str()->formatDecimal(data_get($debt, 'remaining_capital'), 2, ',', '') }} |
{{ data_get($debt, 'recovery') ? __('Yes') : __('No') }} |
@endforeach
@if(count($overdrafts))
| {{ __('Property Type') }} |
{{ __('Property Nature') }} |
{{ __('Value of purchase') }} |
{{ __('Estimated value') }} |
{{ __('Zip Code') }} |
{{ __('City') }} |
{{ __('Warranty proposed') }} |
@foreach($properties as $i => $property)
| {{ data_get($property, 'property_type') }} |
{{ data_get($property, 'property_nature') }} |
{{ str()->formatDecimal(data_get($property, 'value_purchase'), 2, ',', '') }} |
{{ data_get($property, 'value') }} |
{{ data_get($property, 'address.zip_code', '') }} |
{{ data_get($property, 'address.city', '') }} |
{{ data_get($property, 'warranty_proposed') ? __('Yes') : __('No') }} |
@endforeach
@if(count($properties))
| Total en garantie |
{{ $total_warranty_property_value }} |
|
@endif
@endif
{{-- note: [
'id' => $note->id,
'content' => $note->content,
'created_at' => $note->created_at->format('d/m/Y H:i'),
'created_by' => $note->user?->name_and_surname,
] --}}
@if(count($notes))