49 lines
2.0 KiB
PHP
49 lines
2.0 KiB
PHP
@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')
|
|
|
|
|
|
|
|
{{-- <h2 style="text-align:center; padding:30px; color:#dc0f18; font-size:40px">Hear About Us</h2> --}}
|
|
|
|
<!--Testimonials Page Start-->
|
|
<section class="testimonials-page">
|
|
<div class="container">
|
|
<div class="row">
|
|
<!--Testimonial Two Single Start-->
|
|
@foreach($testimonials as $testimony)
|
|
<div class="col-xl-4 col-lg-6 col-md-6 " style="margin-bottom: 85px">
|
|
<div class="testimonial-two__single">
|
|
<div class="testimonial-two__img">
|
|
<img src="{{ $testimony->image }}" style="height: 120px; width:120px; object-fit:cover;" alt="">
|
|
</div>
|
|
<div class="testimonial-two__shape-1">
|
|
<img src="rohini/assets/images/shapes/testimonial-two-shape-1.png" alt="">
|
|
</div>
|
|
<h3 class="testimonial-two__name"><a href="testimonials.html">{{ $testimony->name }}</a></h3>
|
|
<p class="testimonial-two__sub-title">{{ $testimony->designation }}</p>
|
|
<p class="testimonial-two__text">{!! $testimony->description !!}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
|
|
<!--Testimonial Two Single End-->
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!--Testimonials Page End-->
|
|
@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
|