@extends('layouts.main_dashboard.app') @section('title', app()->getLocale() === 'ar' ? 'إدارة المكافآت' : 'Rewards Management') @section('page_heading', app()->getLocale() === 'ar' ? 'إدارة المكافآت' : 'Rewards Management') @section('skip_page_hero', true) @php $isArabic = app()->getLocale() === 'ar'; $statusLabels = [ 'pending' => $isArabic ? 'قيد المراجعة' : 'Pending', 'approved' => $isArabic ? 'معتمد' : 'Approved', 'rejected' => $isArabic ? 'مرفوض' : 'Rejected', 'fulfilled' => $isArabic ? 'تم التسليم' : 'Fulfilled', ]; @endphp @section('content')
{{ $isArabic ? 'صفحة عرض مستقلة للمكافآت مع إضافة المكافأة من popup ومتابعة الطلبات في جدول مستقل.' : 'A dedicated rewards listing page with popup creation and a separate redemption management section.' }}
{{ $isArabic ? 'إجمالي المكافآت' : 'Total Rewards' }}
{{ $rewards->count() }}
| {{ $isArabic ? 'اسم المكافأة' : 'Reward Name' }} | {{ $isArabic ? 'تكلفة النقاط' : 'Points Cost' }} | {{ $isArabic ? 'الكمية' : 'Quantity' }} | {{ $isArabic ? 'الحالة' : 'Status' }} | {{ __('dashboard.Actions') }} |
|---|---|---|---|---|
|
{{ $reward->name }} {{ $reward->description ?: ($isArabic ? 'بدون وصف إضافي.' : 'No extra description.') }} |
{{ $reward->points_cost }} | {{ $reward->quantity ?? ($isArabic ? 'غير محدود' : 'Unlimited') }} | {{ $reward->is_active ? ($isArabic ? 'نشط' : 'Active') : ($isArabic ? 'غير نشط' : 'Inactive') }} |
|