@extends('front.layout.app') @section('content')

{{ $banner['investment_banner_name'] ?? '' }}

Primary Investment Allocation

@foreach ($primaryInvestments as $investment)

{{ $investment->title }}

    @foreach (json_decode($investment->points) as $point)
  • {{ $point }}
  • @endforeach
@endforeach

401k Allocation

@foreach ($allocations as $allocation)

{{ $allocation->name ?? '' }}

    @foreach (json_decode($allocation->description) as $point)
  • {{ $point }}
  • @endforeach
@endforeach
@endsection