@extends('admin.layouts.app') @section('title', 'কুপন সমূহ') @section('page-title', 'কুপন সমূহ') @section('content') {{-- Flash Message --}} @if(session('success'))
| কোড | টাইপ | মান | ন্যূনতম অর্ডার | ব্যবহার / সীমা | মেয়াদ | স্ট্যাটাস | অ্যাকশন |
|---|---|---|---|---|---|---|---|
| {{ $coupon->code }} | @if($coupon->type === 'fixed') নির্দিষ্ট পরিমাণ @else শতাংশ @endif | @if($coupon->type === 'fixed') ৳ {{ number_format($coupon->value, 2) }} @else {{ $coupon->value }}% @endif | ৳ {{ number_format($coupon->min_order_amount, 2) }} | {{ $coupon->used_count ?? 0 }} / {{ $coupon->max_uses ?? 'সীমাহীন' }} |
@if($coupon->expires_at)
{{ \Carbon\Carbon::parse($coupon->expires_at)->format('d M, Y') }}
@if(\Carbon\Carbon::parse($coupon->expires_at)->isPast())
মেয়াদ শেষ @endif @else সীমাহীন @endif |
@if($coupon->is_active) সক্রিয় @else নিষ্ক্রিয় @endif | |
| কোনো কুপন পাওয়া যায়নি | |||||||