@extends('public.layouts.default') @section('title') |Testimonial @endsection @section('content')

Testimonials

Home / Testimonials

Some words From Our Happy Clients

    @foreach($testimonials as $testimonial)
  • @if($testimonial['image'] != NULL) Client Image @else Client Image @endif

    {{ $testimonial->name}}

    @for($i=1;$i<=$testimonial->rating;$i++) Star @endfor @if(($testimonial->rating * 10) % 10 != 0) Star @endif

    {{ $testimonial->comment }}

  • @endforeach
@include('common.testimonial-pagination',['record_paginator'=>$testimonials])
@endsection