{{-- Header --}}

{{ __('Testimonial Library') }}

{{ __('Client reviews displayed on the landing page.') }}

{{ __('Add Testimonial') }}
{{-- Filters --}}
{{-- Success --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Table --}}
@forelse($testimonials as $t) @empty @endforelse
{{ __('Client') }} {{ __('Review') }} {{ __('Rating') }} {{ __('Status') }} {{ __('Actions') }}
@if($t->client_image) @else
{{ substr($t->client_name, 0, 1) }}
@endif
{{ $t->client_name }}
{{ $t->client_position }}

{{ Str::limit($t->review, 80) }}

@for($i = 0; $i < $t->rating; $i++) @endfor
@if($t->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif
@csrf @method('DELETE')

{{ __('No testimonials yet') }}

{{ __('Add your first client testimonial to display on the landing page.') }}

@if($testimonials->hasPages())
{{ $testimonials->links() }}
@endif