@extends('website.layouts.app') @section('content')

{{ $page->application_heading_en }}

{!! $page->application_description_en !!}

{{ str_replace('-', ' ', pathinfo($page->application_image, PATHINFO_FILENAME)) }}

{{ $page->application_sub_heading_en }}

{!! $page->application_sub_description_en !!}

{!! $page->accordion_heading_description_one_en !!}

{!! $page->accordion_heading_description_two_en !!}

{!! $page->accordion_heading_description_three_en !!}

{!! $page->accordion_heading_description_four_en !!}

{!! $page->accordion_heading_description_five_en !!}

{{ str_replace('-', ' ', pathinfo($page->accordion_image, PATHINFO_FILENAME)) }}

{{ $page->how_does_it_work_en }}

mark

{{ $page->box_heading_one_en }}

{!! $page->box_description_one_en !!}

mark

{{ $page->box_heading_two_en }}

{!! $page->box_description_two_en !!}

mark

{{ $page->box_heading_three_en }}

{!! $page->box_description_three_en !!}

mark

{{ $page->box_heading_four_en }}

{!! $page->box_description_four_en !!}

frequently asked questions

@foreach ($faqs as $faq)
Faq

{{ $faq->title_en }}

@php // Get the first 40 characters of the description $preview = \Illuminate\Support\Str::limit($faq->description_en, 40, ''); // Get the remaining part of the description starting from character 40 $remainingContent = substr($faq->description_en, 40); @endphp
{{ $preview }}
@if (strlen($remainingContent) > 0)
{{ $remainingContent }}
@endif
@endforeach

{{ $page->ready_to_talk_heading_en }}

{!! $page->ready_to_talk_description_en !!}

{{ str_replace('-', ' ', pathinfo($page->ready_to_talk_image, PATHINFO_FILENAME)) }}
@endsection