@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')
@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') }}
@empty
{{ __('No testimonials yet.') }}
@endforelse
@endsection