@extends('layouts.app') @section('content')
@component('components.print') ارشيف تابع @endcomponent

تقارير مخالفة تعاليم السجن

عدد السجناء المرتكبين مخالفات داخل السجن : {{$data->count()}}

@foreach($data as $item) @endforeach
# الاسم رقم الهوية تاريخ المخالفة العقوبة المقررة مدة العقوية
{{ $loop->iteration }} {{ $item->prisoner->full_name}} {{ $item->prisoner->identity_number }} {{ $item->date_violating_instructions_hijri }} @foreach (config("static.punishment_type_prison") as $punishmentKey => $punishmentLabel) @if ($item->$punishmentKey && $punishmentKey != "other" ) {{ $punishmentLabel . " - " }} @elseif ($item->$punishmentKey && $punishmentKey == "other" ) {{ $item->other_punishment_input }} @endif @endforeach {{ $item->duration_penalty }} يوم
@endsection @section('script') @endsection