@forelse($vouchers as $voucher)
| #{{ $voucher->id }} |
{{ $voucher->name }} |
{{ $voucher->code }} |
{{ \Carbon\Carbon::parse($voucher->start_date)->format('d.m.Y') }} |
{{ \Carbon\Carbon::parse($voucher->expiration_date)->format('d.m.Y') }} |
{{ number_format($voucher->min_order_value, 2) }} € |
{{ number_format($voucher->max_discount, 2) }} € |
|
@empty
| No vouchers found. |
@endforelse