@extends('layouts.app') @section('content')
@component('components.print') @endcomponent

قائمة استدعاء النزلاء - تسجيل طلب

@csrf
@foreach ($prisoner_calls as $prisoner_call) @if ($prisoner_call->callOut && !$prisoner_call->callReturn) @else @endif @endforeach
# اسم النزيل رقم الهوية الجنسية جنسية أخري الجنس جهة الطلب تاريخ الحضور وقت الحضور تعديل اشراف
{{ $loop->iteration }} {{ $prisoner_call->prisoner->full_name }} {{ $prisoner_call->prisoner->full_name }}{{ $prisoner_call->prisoner->identity_number }} {{ optional($prisoner_call->prisoner->nationality)->name }} {{ optional($prisoner_call->prisoner->other_nationality)->name }} {{ config('static.gender.' . $prisoner_call->prisoner->gender) }} {{ $prisoner_call->request_source == 'university' ? $prisoner_call->university_name : config("static_prisoner_out.request_source.$prisoner_call->request_source") }} {{ $prisoner_call->request_date_hijri }} {{ $prisoner_call->request_time }} @if (!in_array($prisoner_call->status, ['out', 'return'])) تعديل @endif
@endsection