@extends('layouts.finance') @section('title', 'Expiring Vouchers') @section('subtitle', 'Available voucher codes expiring within ' . $months . ' ' . \Illuminate\Support\Str::plural('month', $months)) @section('content')

Less than {{ $months }} {{ \Illuminate\Support\Str::plural('month', $months) }}

Back
@forelse($vouchers as $voucher) @empty @endforelse
Product Voucher Code Expiry Date Days Left
{{ $voucher->product_name }} {{ $voucher->voucher_code }} {{ \Carbon\Carbon::parse($voucher->expiry_date)->format('M d, Y') }} {{ number_format($voucher->days_remaining) }}
No available non-Apeuni vouchers found for this expiry window.
@endsection