@extends('layouts.app') @section('title', __('Testimonials')) @section('page-title', __('Testimonials')) @section('page-subtitle', __('Customer quotes shown on the public homepage.')) @section('content') @include('super-admin._nav')
{{ __('All testimonials') }} {{ $items->count() }} {{ __('Add testimonial') }}
@forelse($items as $t)
@if($t->avatar) @else {{ strtoupper(substr($t->name,0,1)) }} @endif
{{ $t->name }} — {{ $t->role() }}
{{ $t->company }}
“{{ $t->content() }}”
@for($i=0;$i<$t->rating;$i++)★@endfor {{ $t->is_active ? __('Active') : __('Inactive') }} {{ __('Edit') }}
@csrf @method('DELETE')
@empty
{{ __('No testimonials yet.') }}
@endforelse
@endsection