@extends('panel._layout.app') @section('content')
@forelse ($coupons as $item) @empty @endforelse
# الاسم كود الخصم نوع الخصم قيمة الخصم تاريخ البدايه تاريخ النهايه عدد مرات الاستخدام عدد مرات الاستخدام لكل مستخدم الحاله الأدوات تغير الحاله
{{ $item->id }} {{ $item->name }} {{ $item->code_coupon }} {{ $item->type_coupon }} {{ $item->value_coupon }} {{ $item->date_start }} {{ $item->date_end }} {{ $item->usage }} {{ $item->usage_of_user }} {{ $item->is_delete ? 'غير مفعل' : 'مفعل' }}
@csrf @method('POST')
لا يوجد خصومات
@foreach($coupons as $coupon) @endforeach @endsection