@extends('admin.layouts.app') @section('title', 'Promo Codes') @section('content')
Add Promo Code
@foreach($promoCodes as $p) @endforeach
CodeTypeValueMin. PurchaseUsedExpiryStatusActions
{{ $p->code }} {{ ucfirst($p->discount_type) }} {{ $p->discount_type=='percentage' ? $p->discount_value.'%' : $siteSettings['currency'].$p->discount_value }} {{ $siteSettings['currency'] }}{{ number_format($p->minimum_purchase,2) }} {{ $p->total_used }}{{ $p->usage_limit ? ' / '.$p->usage_limit : '' }} {{ $p->expiry_date->format('M d, Y') }} @if($p->isExpired())Expired@endif
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $promoCodes->links() }}
@endsection