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

{{ $page->lead_sub_heading_en }}

{{ $page->lead_sub_description_en }}

@csrf
Learn more about our services
{{-- --}}

{{ $home->application_hub_en }}

{{--

{!! $page->application_hub_description_en !!}

--}}
{{ $home->dedicated_en }}
{{ $home->processing_en }}
{{ $home->global_en }}
{{ $home->leaders_en }}
{{ $home->competitive_en }}
@foreach ($services as $tab) @endforeach
@foreach ($services as $tab)

{{ $tab->title_en }}

{{ $tab->description_en }}
@foreach ($tab->serviceItems as $item)
{{-- --}} {{ $item->item_en }}
@endforeach
@if ($tab->heading_en == 'Track My Application') Track Now @else Apply Now @endif {{-- Apply Now --}} {{-- Read More --}}
@endforeach
@if (!empty($faqs))

frequently asked questions

@foreach ($faqs as $index => $faq)

{!! Str::words($faq->title_en, 9, '') !!}

@php $words = explode(' ', $faq['description_en']); $previewWords = implode(' ', array_slice($words, 0, 10)); // First 10 words $remainingWords = implode(' ', array_slice($words, 10)); // Remaining words @endphp
{{ $previewWords }}...
@endforeach
@endif {{--

frequently asked questions

@foreach ($faqs as $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
--}} @endsection