@extends('layouts.moderator') @section('title', 'إدارة التكريمات والمكافآت') @section('content')

إدارة التكريمات والمكافآت

إنشاء وإدارة تكريمات ومكافآت الأعضاء من نفس الجنس {{ $moderatorGender === 'male' ? 'الشباب' : 'الصبايا' }}

طباعة

{{ $stats['total'] }}

الإجمالي

{{ $stats['honors'] }}

التكريمات

{{ $stats['rewards'] }}

المكافآت

{{ $stats['my_created'] }}

من إنشائي

{{ $stats['active'] }}

نشط

البحث والفلترة

إعادة تعيين
@forelse($honorsRewards as $item)
@if($item->type === 'honor') @else @endif

{{ $item->title }}

{{ $item->type_text }}

{{ Str::limit($item->reason, 150) }}

{{ $item->creator->name }} {{ $item->recipients_count }} مستلم {{ $item->created_at->format('Y/m/d') }} @if($item->points_amount) {{ $item->points_amount }} نقطة @endif @if($item->rank) {{ $item->rank->name }} @endif
@if($item->status === 'active') نشط @elseif($item->status === 'completed') مكتمل @else ملغي @endif
عرض @if(auth()->id() === $item->created_by) @endif
@empty

لا توجد تكريمات أو مكافآت

ابدأ بإنشاء أول تكريم أو مكافأة للأعضاء من {{ $moderatorGender === 'male' ? 'الشباب' : 'الصبايا' }}

@endforelse
@if($honorsRewards->hasPages())
{{ $honorsRewards->links() }}
@endif
@endsection