@extends('frontend.layouts.app-proposal')
@section('header-scripts')
@endsection
@section('content')
Risk Profiler
@include('frontend.user.new_client.includes.steps',array('step'=>$step,'type'=>$xtype))
@if(!empty($solution))
Investment Solution
{{ $solution->title }}
{!! $solution->overview !!}
{!! $solution->description !!}
@if(!empty($risk_profile))
@endif
@if(is_array($allocations))
@foreach($allocations as $key => $item)
-
{{ $item['title'] . ' ' . $item['percentage'] . ' %' }}
@endforeach
@endif
Top 5 Holdings
@if($solution->holding->count())
@foreach($solution->holding->sortBy('sort') as $item)
-
{{ floor($item->percentage) . ' %' }}
{{ Html::image('images/uploads/' . $item->image) }}
@endforeach
@endif