@extends('layouts.admin') @section('content')

View Voucher

Voucher Details:
Voucher ID

#{{ $voucher->id }}

Voucher Name

{{ $voucher->name }}

Voucher Code

{{ $voucher->code }}

Min. Order Value

{{ number_format($voucher->min_order_value, 2) }} €

Max. Discount

{{ number_format($voucher->max_discount, 2) }} €

Start Date

{{ \Carbon\Carbon::parse($voucher->start_date)->format('d.m.Y') }}

Expiration Date

{{ \Carbon\Carbon::parse($voucher->expiration_date)->format('d.m.Y') }}

Applied to

@if (!empty($products)) {{ implode(', ', $products) }} @else N/A @endif

Applied to SPOS

@if (!empty($spos)) {{ implode(', ', $spos) }} @else N/A @endif

Customer Type

{{ $voucher->customer_type ?? 'All' }}

Combination with other Voucher

{{ $voucher->combine_with_others ? 'Yes' : 'No' }}

Redemption Limit

{{ $voucher->redemption_limit ?? '-' }}

Applied by Customers

{{ $voucher->applied_count ?? '0' }}

@endsection