@extends('backoffice.dashboard') @section('content') @if(Auth::check())

قائمة التقييمات

@if(session('success'))
{{ session('success') }}
@endif
@forelse($avis as $a) @empty @endforelse
# المستخدم المركب الشبابي تاريخ التقييم التقييم الإجراءات
{{ $a->id_avis }} {{ $a->user?->nom_prenom ?? 'مستخدم مجهول' }} {{ $a->auberge?->nom ?? '---' }} {{ $a->date_avis ? \Carbon\Carbon::parse($a->date_avis)->format('Y-m-d') : '---' }} @php $maxStars = 5; $fullStars = $a->note ?? 0; // note actuelle @endphp @for($i = 1; $i <= $maxStars; $i++) @if($i <= $fullStars) {{-- étoile pleine --}} @else {{-- étoile vide --}} @endif @endfor
@csrf @method('DELETE')
لا يوجد تقييمات.
{{ $avis->links() }}
@else @endif @endsection