@extends('layout.admin.master')
@section('meta-title', 'Coupon')
@section('body-class', 'menu-position-side menu-side-left full-screen with-content-panel')
@section('breadcrumbs')
Coupon
@endsection
@push('asset-top')
@endpush
@section('content')
# |
Promo Code |
Type |
Value |
Start Date |
End Date |
Action |
@foreach($coupons as $key=>$coupon)
{{$key+1}} |
{{$coupon->code}} |
{{$coupon->type}} |
{{$coupon->amount}} |
{{$coupon->start_dt}} |
{{$coupon->end_at}} |
|
@endforeach
@endsection