{{-- resources/views/general/my-honors-rewards/show.blade.php --}} @extends($layout) @section('title', 'تفاصيل ' . $honorReward->type_text) @section('content')
{{-- Page Header --}}

{{ $honorReward->title }}

{{-- Main Content --}}
{{-- Header Info --}}
@if($honorReward->type === 'honor') @else @endif
{{ $honorReward->type_text }} {{ $honorReward->status_text }}

{{ $honorReward->reason }}

{{-- Awards Information --}}
{{-- Points Awarded --}} @if($honorReward->points_amount && $recipient->points_awarded)

نقاط مكتسبة

{{ $honorReward->points_amount }}

تم إضافتها إلى رصيدك

@endif {{-- Rank Awarded --}} @if($honorReward->rank && $recipient->rank_awarded)
{!! $honorReward->rank->icon_svg !!}

رتبة جديدة

{{ $honorReward->rank->name }}

@if($honorReward->rank->description)

{{ $honorReward->rank->description }}

@endif
@endif
{{-- Details Section --}}

معلومات إضافية

{{-- Creator Info --}}
منح بواسطة
{{ substr($honorReward->creator->name, 0, 1) }}
{{ $honorReward->creator->name }}
{{ $honorReward->creator->detailed_role }}
{{-- Date Info --}}
تاريخ المنح
{{ $honorReward->created_at->format('l، j F Y') }} ({{ $honorReward->created_at->diffForHumans() }})
{{-- Status Info --}} @if($recipient->awarded_at)
تاريخ الاستلام
{{ $recipient->awarded_at->format('l، j F Y') }}
@endif {{-- Total Recipients --}}
عدد المستلمين
{{ $honorReward->recipients_count }} {{ $honorReward->recipients_count == 1 ? 'شخص' : 'أشخاص' }}
{{-- Additional Notes --}} @if($honorReward->additional_notes)

ملاحظات إضافية

{{ $honorReward->additional_notes }}

@endif {{-- Personal Notes Section --}} @if($recipient->recipient_notes)

ملاحظاتي الشخصية

{{ $recipient->recipient_notes }}

@endif {{-- Actions --}}
@endsection