@extends('layouts.admin')
@section('page_title', $isRtl ? 'آراء العملاء' : 'Testimonials')
@section('content')
|
{{ $isRtl ? 'الاسم' : 'Name' }} |
{{ $isRtl ? 'المدينة' : 'City' }} |
{{ $isRtl ? 'النجوم' : 'Stars' }} |
{{ $isRtl ? 'الحالة' : 'Status' }} |
|
@forelse($testimonials as $t)
@if($t->avatar)
@else
{{ $t->initial }}
@endif
|
{{ $t->name }} |
{{ $t->city }} |
{{ $t->stars }} |
@if($t->is_active)
{{ $isRtl ? 'نشط' : 'Active' }}
@else
{{ $isRtl ? 'معطل' : 'Inactive' }}
@endif
|
|
@empty
| {{ $isRtl ? 'لا توجد آراء بعد' : 'No testimonials yet' }} |
@endforelse
{{ $testimonials->links() }}
@endsection