@extends('layouts.user') @push('css') @endpush @section('contents')

{{__('Plan Title')}}

{{$data->title}}

{{__('Loan Amount')}}

{{ showprice($loanAmount,$currency) }}

{{__('Total Installment')}}

{{ $data->total_installment }}

{{__('Per Installment')}}

{{ showprice(($loanAmount * $data->per_installment/100),$currency) }}

{{__('Total Amount To Pay')}}

{{ showprice($perInstallment * $data->total_installment, $currency) }}
@csrf @if ($data->required_information) @foreach (json_decode($data->required_information,true) as $key=>$value) @if ($value['type'] == 'file')
@endif @if ($value['type'] == 'text')
@endif @if ($value['type'] == 'textarea')
@endif @endforeach @endif
@endsection @push('js') @endpush