@extends('layout.app') @section('title') {{ __('عرض بطاقة الملاحظة الصفية') }} @endsection @section('css') @endsection @section('content')

{{ __('عرض بطاقة الملاحظة الصفية') }}

@if (!$finalized && count($guidelines) > 0) @endif @if (count($guidelines) > 0) {{ __('تصدير PDF') }} @endif @if (Auth::check() && Auth::user()->user_name == 'admin') {{ __('إضافة جديدة') }} @endif
@if (count($guidelines) > 0) @php $lastDeptStandard = null; @endphp @foreach ($guidelines as $guideline) @if ($lastDeptStandard !== $guideline->department->id . '-' . $guideline->standard->id) @if (!empty($guideline->indicator_discription)) @endif @php $lastDeptStandard = $guideline->department->id . '-' . $guideline->standard->id; @endphp @endif @if ($finalized && isset($evaluations[$guideline->paragraph->id])) @endif @if (!$finalized && Auth::check() && Auth::user()->user_name == 'admin') @endif @endforeach
{{ $guideline->department->name }} - {{ $guideline->standard->standard_name }}
{{ __('المؤشر') }}: {{ $guideline->indicator->name }}
{!! $guideline->indicator_discription !!}
{{ __('الفقرة') }} {{ $guideline->paragraph->name }}
{{ __('المشاهد الدالة') }}
    @foreach ($guideline->noteScenes as $scene)
  • @endforeach
{{ __('التقييم') }} {{ $evaluations[$guideline->paragraph->id] }}
{{ __('العمليات') }}
@else
{{ __('لا توجد بيانات متاحة') }}
@endif
@endsection @section('js') @endsection