@extends('layouts.admin.e-commerce.app') @section('title', 'Coupon Information') @section('content')

Coupon Information

Coupon Information

Coupon Code {{$coupon->code}}
Discount Type {{$coupon->discount_type}}
Discount Amount/Percent @if ($coupon->discount_type == 'percent') {{$coupon->discount.' %'}} @else {{$coupon->discount}} {{ setting('CURRENCY_CODE_MIN') ?? 'TK' }} @endif
Use Limit Per User {{$coupon->limit_per_user}}
Total Use Limit {{$coupon->total_use_limit}}
Expire Date {{date('d M Y', strtotime($coupon->expire_date))}}
Description {{$coupon->description}}
Status @if ($coupon->status) Active @else Disable @endif
@endsection