@extends('layouts.admin') @section('page_title', $isRtl ? 'آراء العملاء' : 'Testimonials') @section('content')

{{ $isRtl ? 'قائمة الآراء' : 'Testimonials List' }}

{{ $isRtl ? 'إضافة رأي' : 'Add Testimonial' }}
@forelse($testimonials as $t) @empty @endforelse
{{ $isRtl ? 'الاسم' : 'Name' }} {{ $isRtl ? 'المدينة' : 'City' }} {{ $isRtl ? 'النجوم' : 'Stars' }} {{ $isRtl ? 'الحالة' : 'Status' }}
@if($t->avatar) @else
{{ $t->initial }}
@endif
{{ $t->name }} {{ $t->city }} {{ $t->stars }} @if($t->is_active) {{ $isRtl ? 'نشط' : 'Active' }} @else {{ $isRtl ? 'معطل' : 'Inactive' }} @endif
@csrf @method('DELETE')
{{ $isRtl ? 'لا توجد آراء بعد' : 'No testimonials yet' }}
{{ $testimonials->links() }}
@endsection