@extends('front/layouts.app') @section('title', __('messages.header.plan_affaire')) @section('content')

{{ __('messages.header.plan_affaire') }}

{{ __('messages.menu_accompagnement.plan_affaires.intro_text') }}

    @foreach (__('messages.menu_accompagnement.plan_affaires.assistance') as $item)
  • {{ $item }}
  • @endforeach
Image

{{ __('messages.menu_accompagnement.plan_affaires.how_to_create') }}

@foreach (__('messages.menu_accompagnement.plan_affaires.sections') as $sectionKey => $section)

{{ $section['title'] }}

{{ $section['description'] }}

@if (isset($section['items']))
    @foreach ($section['items'] as $item)
  • {{ $item }}
  • @endforeach
@endif @if (isset($section['subsections'])) @foreach ($section['subsections'] as $subsection)

{{ $subsection['title'] }}

    @foreach ($subsection['items'] as $item)
  • {{ $item }}
  • @endforeach
@endforeach @endif
@endforeach
Image

{{ __('messages.menu_accompagnement.plan_affaires.financial_plan.title') }}

@foreach (__('messages.menu_accompagnement.plan_affaires.financial_plan.sections') as $section)

{{ $section['title'] }}

{{ $section['description'] }}

@if (isset($section['example']))

{{ $section['example'] }}

@endif
@endforeach
Image
@endsection