@php $services = getServices(limit: 4, order: 'desc'); $institutions = getInstitutions(limit: 10, order: 'desc'); @endphp @extends('client.raffles.layouts.app') @section('content') @include('client.raffles.pages.partials.breadcumb')
Welcome to {{ setting('title') }}

{{ $page->short_description }}

{!! $page->description !!}
@foreach ($services as $service)
{{ $service->title }}

{{ $service->short_description }}

@break($loop->index == 3) @endforeach
We provide quality service that best suites students.
@if ($page->children->isNotEmpty())
@foreach ($page->children as $item)
{{ setting('title') }}

{{ $item->short_description }}

{!! $item->description !!} {{ $item->button_text }}
@break($loop->index == 3) @endforeach
@if ($page->children->count() > 4) @php $fifthPage = $page->children[4]; @endphp

{{ $fifthPage->short_description }}

{!! $fifthPage->description !!}
@if (!is_null($fifthPage->custom))
@foreach ($fifthPage->custom as $item)

{{ $item['icon'] ?? '' }}

{{ $item['key'] ?? '' }}

{{ $item['value'] ?? '' }}

@endforeach
@endif
@endif @endif
RAFFLES
EDUCARE
ASSOCIATES
@if ($page->children->count() > 5) @php $sixthPage = $page->children[5]; @endphp

{{ $sixthPage->short_description }}

{!! $sixthPage->description !!}
Build a greatest career with Raffles Join with us
<
Ready to work together for better solutions. View our job
<
Best consultants for you Contact now
<
@endif @if ($institutions)
@foreach ($institutions as $institution)
@endforeach
@endif
@endsection