@php
$testimonials = getTestimonials(limit: 6, order: 'desc');
$visas = getGalleriesByCategory(limit: null, order: 'asc', category: 'visa-success');
@endphp
@extends('client.rohini.layouts.app')
@section('content')
@include('client.rohini.pages.partials.breadcrumb')
{{--
Hear About Us
--}}
@foreach($testimonials as $testimony)
{{ $testimony->designation }}
{!! $testimony->description !!}
@endforeach
@if ($page->children->count() > 0)
@php
$visapage = $page->children[0];
@endphp
@include('client.rohini.pages.partials.visa',[$visapage, $visas])
@endif
@include('client.rohini.pages.partials.newsletter')
@endsection