@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('years.index'), 'name' => "السنوات الدراسية"],['link' => route('years.show',$year), 'name' => "$year->year_name"],['link' => route('years.periods.show',[$year,$period]), 'name' => $period->period_name ],['link' => route('years.periods.discounts.index',[$year,$period]), 'name' => "خصومات : $period->period_name"]],['title'=> 'ادارة خصومات '. $period->period_name]]; @endphp @section('title', 'ادارة خصومات فترة السداد') @section('content') المدرسة إختر المدرسة @foreach(\App\Models\School::Active()->selectedCorporate()->select('id', 'school_name', 'corporate_id')->get() as $school) {{$school->school_name}} @endforeach الصف إختر الصف خصومات فترة السداد للفترة {{$period->prtiod_name}} للعام الدراسي {{ $year->year_name }} {{ sprintf('يمكنك ادناة الأطلاع علي جميع الخصومات المسجلة للفترة %s : من %s - الي : %s خلال العام الدراسي %s',$period->period_name,$period->apply_start->format('d-m-Y') , $period->apply_end->format('d-m-Y'),$year->year_name) }} اضافة وتعديل الخصومات كود الفئة خطة السداد المرحلة الخصم بواسطة الاجراءات المتاحة @foreach ($discounts as $key => $discount) {{ $discount->id }} {{ $discount->category_name }} {{ $discount->plan_name }} {{ $discount->level_name }} {{ $discount->rate }} % {{ $discount->admin_name }} @can('discounts-delete') @endcan @endforeach @endsection