@extends('central.super.layout') @section('title', __('super.testimonials.title')) @section('content')

{{ __('super.testimonials.title') }}

{{ $testimonials->count() }} {{ $testimonials->count() == 1 ? __('super.common.item') : __('super.common.items') }}
@if($testimonials->isNotEmpty())
@foreach($testimonials as $t) @endforeach
# {{ __('super.testimonials.client') }} {{ __('super.testimonials.review') }} {{ __('super.testimonials.rating') }} {{ __('super.common.status') }} {{ __('super.common.actions') }}
{{ $t->sort_order }}
@if($t->avatar) @else
{{ strtoupper(mb_substr($t->client_name, 0, 1)) }}
@endif

{{ $t->client_name }}

@if($t->company_name)

{{ $t->company_name }}

@endif
{{ Str::limit($t->review, 60) }} @if($t->rating) @for($i = 1; $i <= 5; $i++) @endfor @else @endif {{ $t->is_active ? __('super.common.active') : __('super.common.inactive') }}
{{ __('super.common.edit') }}
@csrf @method('DELETE')
@else

{{ __('super.testimonials.no_testimonials') }}

{{ __('super.testimonials.no_test_desc') }}

{{ __('super.testimonials.add_first') }}
@endif
@push('scripts') @endpush @endsection