@extends('admin.layout.dashboard_master') @section('content')

Vouchers

@if(session('success')) @endif @if(session('error')) @endif
Voucher List
Create Voucher
@foreach($vouchers as $voucher) @endforeach
Code Value Type Min Spend Expiry Status Actions
{{ $voucher->code }} {{ $voucher->value }} {{ ucfirst($voucher->type) }} {{ $voucher->min_spend }} {{ $voucher->expiry_date->format('Y-m-d') }} @if($voucher->status == 'active') Active @elseif($voucher->status == 'used') Used @else Expired @endif
@csrf @method('DELETE')
{{ $vouchers->links() }}
@endsection