@extends('layouts.member') @section('title','طلب حذف لايفاتك') @section('content') @php use Carbon\Carbon; @endphp
{{-- تنبيهات --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- هيدر --}}

طلب حذف لايفاتك

من هنا يمكنك اختيار لايفاتك وإرسال طلب حذف للإدارة. الحذف لا يتم فوراً، بل بعد موافقة غرفة الصقر.

طلباتك قيد المراجعة: {{ $memberPendingDeleteCount }}

{{-- اختيار اليوم --}}
{{-- لايفات العضو --}} @if($streams->isEmpty())
لا يوجد لايفات لك في هذا اليوم.
@else
@foreach($streams as $live) @php $timeText = $live->scheduled_time ? Carbon::parse($live->scheduled_time)->format('H:i') : '—'; $hours = round(($live->duration_hours ?? 0) + (($live->duration_minutes ?? 0)/60), 2); $typeLabel = match($live->type) { 'guests' => 'قستات', 'tours' => 'تحديات', 'both' => 'كلاهما', default => $live->type, }; @endphp
لايف الساعة {{ $timeText }}
النوع: {{ $typeLabel }} • المدة: {{ $hours }} س • الخانة: {{ $live->slot_label ?: '—' }}
@endforeach
@endif
{{-- Modal: طلب الحذف --}} @endsection