@extends('layouts.front.login-site') @section('content') {{-- Page Banner --}}

Client Reviews

See what our clients have to say about us.

{{-- Reviews Section --}}

What Our Clients Are Saying

{{-- Review Cards --}}
@foreach ($reviews as $review)

{{ $review->reviewer->firstname ?? '' }} {{ $review->reviewer->lastname ?? '' }}

{{ \Carbon\Carbon::parse($review->created_at)->diffForHumans() }}

{!! $review->review !!}

@endforeach {{-- Pagination links --}} @if (count($reviews) > 0) @endif
{{-- View More Reviews Button --}} {{-- --}} {{-- Pagination (if needed) --}}
{{ $reviews->links() }}
@endsection