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

طباعة الإجراءات اليومية

@if (isset($window_name) && $window_name == 'violation_regulations') @endif @if (isset($window_name) && $window_name == 'calling_guests') @endif @if (isset($window_name) && $window_name == 'forced_exit') @endif @isset($data) @foreach ($data as $index => $row) @if (isset($window_name) && $window_name == 'violation_regulations') @endif @if (isset($window_name) && $window_name == 'calling_guests') @endif @if (isset($window_name) && $window_name == 'forced_exit') @endif @endforeach @endisset
# التاريخ اسم النزيل رقم الهويه رقم الغرفه اسم العنبر وضع النزيل اسم النافذه الاجراء المطلوبالعقوبه المقررهجهة الطلب سبب الخروج
{{ $index + 1 }} {{ Hijrian::hijri($row->date ?? '0000-00-00')->format('Y-m-d') }} {{ $row->prisoner?->name }} {{ $row->prisoner?->id_number }} {{ $row->prisoner?->contact_information?->room?->room_number }} {{ $row->prisoner?->contact_information?->prison?->name }} @if (is_array($window_name)) {{ $windows[$window_name[$index]] }} @else {{ $windows[$window_name] }} @endif @if (is_array($window_name)) {{ $procedure[$index][array_key_first($procedure[$index])] ?? null }} @else {{ $procedure[array_key_first($procedure)] ?? null }} @endif @if ($row->solitary_confinement) حبس انفرادى @elseif($row->handcuff) تكبيل @elseif($row->phone_call) حرمان من الاتصال الهاتفي @elseif($row->visitation) حرمان من الزيارة @elseif($row->emergency_exit) حرمان من الخروج الاضطراري @elseif($row->outside_prison) حرمان من الزيارة العائلة خارج السجن @elseif($row->check_other) اخرى @endif @foreach (__('static.decision_source') as $key => $decision_source) {{ $row->decision_source == $key ? $decision_source : '' }} @endforeach {{ $row->notes }}
@endsection