Investment Suitability Profile Questionaire
Name :
Age :
Investment period
|
@if(isset($periods) && count($periods)>0)
@foreach($periods as $period)
{{$period['period_name']}}
|
@endforeach
@endif
@if(isset($questiondetails) && count($questiondetails)>0)
@php
$i=1;
@endphp
@foreach($questiondetails as $question)
QUESTION {{$i}}
|
{{strip_tags($question->question)}}
|
@php
$questionOptions = $question->qusetionOptions;
@endphp
@if(isset($questionOptions) && count($questionOptions)>0)
@php
$iopt = 'A';
@endphp
@foreach($questionOptions as $qoption)
{{$iopt}}. {{$qoption['title']}}
|
@php
$iopt++;
@endphp
@endforeach
@endif
@php
$i++;
@endphp
@endforeach
@endif
------------------------
Date
|
---------------------------
Signature
|
@include('frontend.calculators.common.footer')