@extends('backend.instructor.master') @section('content')
All Coupons
Create Coupon

@foreach ($all_coupon as $index => $item) @endforeach
NO Coupon Name Coupon Discount Coupon Validity Status Action
{{ $index + 1 }} {{$item->coupon_name}} {{ $item->coupon_discount }} {{ \Carbon\Carbon::parse($item->coupon_validity)->format('d-F-Y') }} @if ($item->status == 1) Yes @else No @endif
@endsection @push('scripts') @endpush