@extends('layouts.app') @section('content')
@component('components.print') @endcomponent
تفاصيل الحكم رقم {{ $judgement->judgement_number }} للنزيل {{ $judgement->prisoner->full_name }}
{{-- معلومات النزيل --}}

معلومات النزيل

  • اسم النزيل : {{ $judgement->prisoner->full_name }}
  • رقم الهوية : {{ $judgement->prisoner->identity_number }}
  • الجنسية : {{ $judgement->prisoner->nationality->name }}
  • تاريخ الميلاد : {{ $judgement->prisoner->date_of_birth_hijri }}
  • الديانة : {{ config('static.religion.' . $judgement->prisoner->religion) }}
  • الجنس : {{ config('static.gender.' . $judgement->prisoner->gender) }}
  • المهنة : {{ config('static.profession.' . $judgement->prisoner->profession) }}
  • رقم الملف : {{ $judgement->prisoner->file_number }}
  • السجن : {{ $judgement->prisoner->prison->name }}
  • العنبر : {{ $judgement->prisoner->prison_section->name }}
{{-- معلومات القضية --}}

معلومات القضية

  • تصنيف القضية الاساسى : {{ optional($judgement->main_category)->name ?? 'لا يوجد تصنيف اساسي لهذة القضية' }}
  • تصنيف القضية الفرعى : {{ optional($judgement->sub_category)->name ?? 'لا يوجد تصنيف فرعي لهذة القضية' }}
  • تاريخ وقوع الجريمة : {{ $judgement->issue->crime_date_occurred_hijri }}
  • رقم القضية : {{ $judgement->issue->issue_number }}
  • اسم جهة القبض : {{ $judgement->issue->arrest_order->arresting_destination }}
  • تاريخ التوقيف : {{ \Carbon\Carbon::parse($judgement->issue->arrest_order->stop_date_time_hijri)->format('Y-m-d') }}
  • وقت التوقيف : {{ \Carbon\Carbon::parse($judgement->issue->arrest_order->stop_date_time)->format('H:i a') }}
  • تاريخ الاستلام : {{ \Carbon\Carbon::parse($judgement->issue->arrest_order->receipt_date_time_hijri)->format('Y-m-d') }}
  • وقت الاستلام : {{ \Carbon\Carbon::parse($judgement->issue->arrest_order->receipt_date_time)->format('H:i a') }}
{{-- معلومات الحكم --}}

معلومات الحكم

  • مصدر الحكم : {{ $judgement->judgement_source }}
  • جهه تأييد الحكم : {{ optional($judgement->main_judgement_letter)->letter_source ?? 'لا يوجد خطاب لهذا الحكم' }}
  • رقم الحكم : {{ $judgement->judgement_number }}
  • رقم خطاب تأييد الحكم : {{ optional($judgement->main_judgement_letter)->letter_number ?? 'لا يوجد خطاب لهذا الحكم' }}
  • تاريخ الحكم : {{ $judgement->judgement_date_hijri }}
  • تاريخ تأييد الحكم : {{ optional($judgement->main_judgement_letter)->letter_date_hijri ?? 'لا يوجد خطاب لهذا الحكم' }}
  • تعلق الجرم بالأمن الوطني : {{ $judgement->is_national_security ? 'نعم' : 'لا' }}
  • مجاهر بالمعصية : {{ $judgement->is_transgression ? 'نعم' : 'لا' }}
  • استحقاق الجرم لعقوبة الابعاد : {{ $judgement->is_deportation ? 'نعم' : 'لا' }}
  • القضية من الجرائم الواجب فيها حق خاص : {{ $judgement->is_private_crime ? 'نعم' : 'لا' }}
  • مدة عقوبة السجن للحق العام : {{ $judgement->total_duration_public_imprisonment ? $judgement->total_duration_details['years'] . ' سنة - ' . $judgement->total_duration_details['months'] . ' شهر - ' . $judgement->total_duration_details['days'] . ' يوم ' : '0 يوم' }}
  • مدة عقوبة السجن المرجأ للحق العام : @if (isset($judgement->imprisonment_public_rights)) {{ $judgement->imprisonment_public_rights->duration_years ? $judgement->imprisonment_public_rights->duration_years . ' سنة - ' : '0 سنة - ' }} {{ $judgement->imprisonment_public_rights->duration_months ? $judgement->imprisonment_public_rights->duration_months . 'شهر - ' : '0 شهر - ' }} {{ $judgement->imprisonment_public_rights->duration_days ? $judgement->imprisonment_public_rights->duration_days . 'يوم ' : '0 يوم ' }} @else {{ '0 سنة - 0 شهر - 0 يوم' }} @endif
  • مدة عقوبة السجن حدا : @if (isset($judgement->duration_sentence_limited)) {{ $judgement->duration_sentence_limited->duration_years ? $judgement->duration_sentence_limited->duration_years . ' سنة - ' : '0 سنة - ' }} {{ $judgement->duration_sentence_limited->duration_months ? $judgement->duration_sentence_limited->duration_months . 'شهر - ' : '0 شهر - ' }} {{ $judgement->duration_sentence_limited->duration_days ? $judgement->duration_sentence_limited->duration_days . 'يوم ' : '0 يوم ' }} @else {{ '0 سنة - 0 شهر - 0 يوم' }} @endif
  • عدد الجلدات : {{ isset($judgement->judgement_floogging) ? $judgement->judgement_floogging->floogging_100 * 100 . ' / ' . $judgement->judgement_floogging->floogging_80 * 80 : 0 }} جلدة
  • تصنيف الجرم : {{ $judgement->is_big_issue ? 'من الجرائم الكبيره' : 'من الجرائم الصغيره' }}
  • الغرامة المالية : {{ $judgement->fine_amount ?: '0' }}
  • محكوم بالتعويض المالي (المقدار) : {{ $judgement->judgement_fine?->financial_compensation ? $judgement->judgement_fine->financial_compensation : '0' }}
  • @if (isset($judgement->judgement_fine->financial_compensation))
  • اسم المستفيد بالتعويض المالي : {{ $judgement->judgement_fine->full_name }}
  • @endif
{{-- العقوبات البديلة --}} @if (isset($judgement->judgement_punishment))

معلومات العقوبات البديلة

  • وصف العقوبة : {{ $judgement->judgement_punishment->punishment_description ?: '---' }}
  • شروط تنفيذ العقوبة : {{ $judgement->judgement_punishment->punishment_conditions ?: '---' }}
  • مكان تنفيذ العقوبة : {{ $judgement->judgement_punishment->punishment_place ?: '---' }}
  • مدة العقوبة : {{ $judgement->judgement_punishment->punishment_duration_years . ' سنة - ' }} {{ $judgement->judgement_punishment->punishment_duration_months . ' شهر - ' }} {{ $judgement->judgement_punishment->punishment_duration_days . ' يوم ' }}
  • عدد ساعات العمل اليومى : {{ $judgement->judgement_punishment->punishment_daily_working_hours ?: 0 }}
  • مصحوبة بسوار إليكترونى : {{ $judgement->judgement_punishment->is_electronic_bracelet ? 'نعم' : 'لا' }}
  • نطاق السوار الإلكتروني : {{ $judgement->judgement_punishment->electronic_bracelet_range ?: '---' }}
  • ملاحظات : {{ $judgement->judgement_punishment->punishment_note ?: '---' }}
@endif {{-- القضايا المتداخلة --}} @if (count($judgement->judgement_related_issues))

معلومات القضايا المتداخلة مع الجريمة

@foreach ($judgement->judgement_related_issues as $related_issue)
  • تصنيف القضية الاساسى : {{ $related_issue->main_category->name }}
  • تصنيف القضية الفرعي : {{ $related_issue->sub_category?->name }}
  • مدة عقوبة السجن النافذ للحق العام : {{ $related_issue->imprisonment_period_years . ' سنة - ' }} {{ $related_issue->imprisonment_period_months . ' شهر - ' }} {{ $related_issue->imprisonment_period_days . ' يوم ' }}
  • مقدار الغرامة المالية : {{ $related_issue->overlapping_fine_amount }}
  • يوجد حد شرعي : {{ $related_issue->is_sharia_limit == 1 ? 'نعم' : 'لا' }}
  • يوجد حق خاص : {{ $related_issue->is_special_right == 1 ? 'نعم' : 'لا' }}
  • يوجد استحقاقات مالية : {{ $related_issue->is_financial_dues == 1 ? 'نعم' : 'لا' }}

@endforeach
@endif {{-- العقوبات التكميلية --}} @if ($judgement->judgement_punishment_supplementaries->isNotEmpty())

معلومات العقوبات التكميلية

@foreach ($judgement->judgement_punishment_supplementaries as $item)
  • نوع العقوبة التكميلية : {{ config('static.complementary_punishment')[$item->supplementary_punishment_type] }}
  • مدة العقوبة التكميلية : {{ $item->supplementary_punishment_duration_years . ' سنة - ' }} {{ $item->supplementary_punishment_duration_months . ' شهر - ' }} {{ $item->supplementary_punishment_duration_days . ' يوم ' }}
  • تفاصيل العقوبة التكميلية : {{ $item->supplementary_punishment_description }}

@endforeach
@endif {{-- الاسئلة --}} @if (count($judgement->judgement_question_classifications))

المدخلات

    @foreach ($judgement->judgement_question_classifications as $item) @if ($item->condition_type == 'checkbox')
  • {{ $item->name_label }} : {{ $item->value == 1 ? 'نعم' : 'لا' }}
  • @elseif($item->condition_type == 'number')
  • {{ $item->name_label }} : {{ $item->value }}
  • @endif @endforeach
@endif
@endsection