@extends('admin.layouts.app') @section('title', 'Testimonials') @section('heading', 'Customer Testimonials') @section('content')

Manage customer reviews displayed on the homepage.

{{-- Add form --}}

Add Testimonial

Add a new customer review

@csrf
@if($items->isEmpty())

No testimonials yet

Add your first customer review above.

@else
@foreach($items as $t) @endforeach
Photo Customer Review Rating Order Status Actions
@if($t->image) @else
{{ strtoupper(substr($t->customer_name,0,1)) }}
@endif
{{ $t->customer_name }} @if($t->customer_role)
{{ $t->customer_role }}@endif
"{{ Str::limit($t->review, 100) }}" @for($i=1; $i<=5; $i++)@endfor {{ $t->sort_order }} @if($t->active) Active @else Hidden @endif
@csrf @method('DELETE')
@endif @push('scripts') @endpush @endsection