@extends('admin.layouts.app') @section('title', 'Testimonials') @section('breadcrumb') @endsection @section('content')
{{ $testimonials->total() }} Testimonials
@forelse($testimonials as $t) @empty @endforelse
Avatar Name Location Rating Message Status Actions
@if($t->avatar) {{ $t->name }} @else
{{ strtoupper(substr($t->name,0,1)) }}
@endif
{{ $t->name }} {{ $t->location ?? '—' }} @for($i=1;$i<=$t->rating;$i++)@endfor {{ Str::limit($t->message, 70) }}
@csrf @method('DELETE')
No testimonials yet.
@if($testimonials->hasPages()) @endif
@endsection