@extends('layout.layout') @section('content')
Show
@foreach ($discountPlans as $discountPlan) @endforeach
Name (EN) Name (AR) Level From Level To Type Discount Action
{{ $discountPlan->name_en }} {{ $discountPlan->name_ar }} {{ $discountPlan->level_from }} {{ $discountPlan->level_to }} {{ $discountPlan->type }} {{ $discountPlan->discount }}
{{ $discountPlans->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@include('dashboard.academics.discount_plan.create') @foreach ($discountPlans as $discountPlan) @include('dashboard.academics.discount_plan.edit', ['discountPlan' => $discountPlan]) @endforeach @endsection