@extends('layout.mainlayout') @section('content') @component('components.breadcrumb') @slot('title') Testimonials @endslot @slot('item1') index @endslot @slot('item3') Pages @endslot @slot('item2') Testimonials @endslot @endcomponent
@if(empty($testimonials ?? []) || count($testimonials ?? []) === 0)

Testimonials Coming Soon

We're working on gathering feedback from our amazing travelers. Check back soon for real testimonials!

@else @foreach($testimonials as $testimonial)
{{ $testimonial->title }}

{{ $testimonial->content }}

img
{{ $testimonial->name }}

{{ $testimonial->location }}

{{ $testimonial->rating }}
@endforeach @endif
@endsection