تفاصيل النزهة

@include('layouts.account-sidebar')
{{ $trip->title }}
{{ optional($trip->starts_at)->format('Y-m-d H:i') }} | الحالة: {{ $trip->status }} | المنظم: {{ optional($trip->creator)->name }}
@if($isJoined)
@csrf
@else
@csrf
@endif @if($canEdit) تعديل @endif
التاريخ والوقت
{{ optional($trip->starts_at)->format('Y-m-d H:i') }}
عدد المشاركين
{{ $trip->joined_participants_count ?? 0 }}@if($trip->max_participants) / {{ $trip->max_participants }}@endif
المسار
{{ $trip->route ?? '-' }}
نقطة التجمع
{{ $trip->meeting_point ?? '-' }}
الوصف
{{ $trip->description ?? '-' }}
التقييمات والتعليقات
@if($trip->status !== 'completed')
يمكن التقييم بعد انتهاء النزهة.
@else
@csrf
@endif
@if($reviews->count() === 0)
لا توجد تقييمات بعد.
@else
@foreach($reviews as $r)
{{ optional($r->user)->name }}
{{ optional($r->created_at)->format('Y-m-d H:i') }}
التقييم: {{ $r->rating }}/5
@if($r->comment)
{{ $r->comment }}
@endif
@endforeach
{{ $reviews->links() }}
@endif