@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('coupons.index'), 'name' => 'قسائم الخصم'], ['link' => route('classifications.index'), 'name' => 'تصنيفات القسائم']],['title'=> 'تصنيفات القسائم']]; @endphp @section('title', 'تصنيفات القسائم') @section('content') تصنيفات القسائم تصنيفات القسائم تسمح لمديرين النظام بوضع حدود مختلفة لكل تصنيف مما يسمح في التحكم في قيمة الخصومات الممنوحة لكل تصنيف .. @can('discounts-create') اضافة تصنيف جديد @endcan # اسم التصنيف العام الدراسي الحد الاقصي القسائم المستخدمة القسائم الصالحة بادئة القسائم الحالة بواسطة اخر تعديل الاجراءات المتاحة @foreach($classifications as $Classification) {{ $Classification->id }} {{ $Classification->classification_name }} {{ $Classification->year_name }} {{ $Classification->limit }} ر.س {{ $Classification->used_limit }} ر.س {{ $Classification->unused_limit }} ر.س {{ $Classification->classification_prefix }} {!! isActive($Classification->active) !!} {{ $Classification->admin_name }} {{ $Classification->updated_at->diffforhumans() }} @if(!$Classification->trashed()) @can('discounts-list') @endcan @can('discounts-edit') @endcan @can('discounts-delete') @endcan @else تم الحذف @endif @endforeach {{ $classifications->appends(request()->except('page'))->links() }} @endsection