@include('client.rohini.pages.partials.breadcrumb')
@php
$allpages = getPageWithChildrenBySlug(parent:null , slug:"study-in-nz", order:"asc")
@endphp
@foreach($allpages->children as $side)
-
{{ $side->title }}
@endforeach
{{$page->short_title}}
{!! $page->description !!}
@if(isset($page->children[0]))
@php
$first = $page->children[0];
@endphp
@if($first->getRawOriginal('image'))
@endif
{{ $first->title }}
{{$first->short_description}}
@foreach($first->custom as $feature)
-
{{ $feature['key'] }}
{{$feature['value']}}
@endforeach
{!! $first->description !!}
@endif
@if(isset($page->children[1]))
@php
$second = $page->children[1];
@endphp
{{ $second->title }}
@foreach($second->custom as $process)
{{ $process['key'] }}
{{$process['value']}}
@endforeach
@endif
@php
$articleFaqs = getFAQsByCategory(limit: null, order: 'desc', category: $page->slug);
@endphp
@if(isset($articleFaqs))
Frequently Asked Questions
@foreach($articleFaqs->faqs as $faq)
Q{{ $loop->iteration }}. {{ $faq->title }}
@endforeach
@endif
@include('client.rohini.pages.partials.newsletter')
@endsection