@extends('layouts.admin') @section('title', __('Testimonials Management')) @section('content')

{{ __('Testimonials Management') }}

{{ __('Manage client testimonials and reviews') }}

{{ __('Add Testimonial') }}
{{ __('Total Testimonials') }}
{{ $stats['total'] }}
{{ __('Active Testimonials') }}
{{ $stats['active'] }}
{{ __('Featured Testimonials') }}
{{ $stats['featured'] }}
{{ __('Average Rating') }}
{{ number_format($stats['average_rating'], 1) }} / 5
{{ __('Recent Testimonials') }}
{{ __('View All') }}
@if($stats['total'] > 0)
@foreach(\App\Models\Testimonial::latest()->take(5)->get() as $testimonial) @endforeach
{{ __('Client') }} {{ __('Rating') }} {{ __('Content') }} {{ __('Status') }} {{ __('Created') }} {{ __('Actions') }}
@if($testimonial->client_avatar) {{ $testimonial->client_name }} @else
@endif
{{ $testimonial->client_name }}
@if($testimonial->client_position) {{ $testimonial->client_position }} @endif
{!! $testimonial->getRatingStars() !!}
{{ Str::limit($testimonial->content, 100) }}
@if($testimonial->is_active) {{ __('Active') }} @else {{ __('Inactive') }} @endif @if($testimonial->is_featured) {{ __('Featured') }} @endif {{ $testimonial->created_at->format('M d, Y') }}
@else
{{ __('No testimonials yet') }}

{{ __('Start by adding your first client testimonial.') }}

{{ __('Add First Testimonial') }}
@endif
@push('styles') @endpush @push('scripts') @endpush @endsection