@extends('layouts.admin') @section('title',tr('coupons')) @section('content-header',tr('coupons')) @section('breadcrumb')
| {{ tr('id') }} | {{ tr('title') }} | {{ tr('coupon_code') }} | {{ tr('amount_type') }} | {{ tr('amount') }} | {{ tr('expiry_date') }} | {{ tr('status') }} | {{ tr('action') }} |
|---|---|---|---|---|---|---|---|
| {{ showEntries($_GET,$i+1) }} | {{ $coupon_details->title }} | {{ $coupon_details->coupon_code }} | @if($coupon_details->amount_type == 0) {{ tr('percentage') }} @else {{ tr('absolute') }} @endif | @if($coupon_details->amount_type == PERCENTAGE) {{ $coupon_details->amount }} % @else {{ Setting::get('currency') }} {{ $coupon_details->amount }} @endif | {{ common_date($coupon_details->expiry_date , Auth::guard('admin')->user()->timezone , "d M y") }} | @if($coupon_details->status == COUPON_APPROVED) {{ tr('approved') }} @else {{ tr('declined') }} @endif |
|