@extends('layouts.member') @section('title', 'جلسات الضيوف') @section('content')

جلسات الضيوف

إدارة جلسات الضيوف الخاصة بك

{{ $stats['total'] }}
إجمالي الجلسات
{{ $stats['pending'] }}
قيد الانتظار
{{ $stats['confirmed'] }}
مؤكدة
{{ $stats['rejected'] }}
مرفوضة
{{ number_format($stats['total_hours'], 1) }}
إجمالي الساعات
{{ $stats['total_points'] }}
النقاط المكتسبة
@forelse($guests as $guest) @empty @endforelse
العنوان والضيف نوع الطلب التاريخ والوقت الساعات/النقاط الحالة الإجراءات
{{ Str::limit($guest->title, 30) }}
{{ $guest->guest_name }}
@if($guest->guest_contact)
{{ $guest->guest_contact }}
@endif
{{ $guest->request_type_text }}
{{ $guest->scheduled_date->format('Y/m/d') }}
{{ Carbon\Carbon::parse($guest->scheduled_time)->format('H:i') }}
@if($guest->actual_hours)
{{ number_format($guest->actual_hours, 1) }} ساعة
{{ $guest->earned_points }} نقطة
@else
{{ $guest->duration_minutes }} دقيقة
مجدولة
@endif
{{ $guest->status_text }}
@if($guest->status == 'pending') @endif @if(in_array($guest->status, ['pending']) && !$guest->proof_image) @endif @if($guest->status != 'confirmed') @endif
لا توجد جلسات تطابق معايير البحث
@if($guests->hasPages())
{{ $guests->withQueryString()->links() }}
@endif
{{-- مودال إضافة/تعديل جلسة --}} {{-- مودال رفع الإثبات --}} @endsection