@extends('layouts.app') @section('title', 'GiftVoucher') @section('content')
{{ $business_name }}
- Gift Voucher -
{{-- voucherCode --}} @if(!empty($voucher->voucherCode)) Voucher Code: {{$voucher->voucherCode}} @endif
{{-- Category --}} @if(!empty($voucher->category)) Category: {{$voucher->category}} @endif
{{-- Issued Date --}} @if(!empty($voucher->issuedDate)) Issued Date: {{$voucher->issuedDate}} @endif
{{-- Expiry Date --}} @if(!empty($voucher->expiryDate)) Expiry Date: {{$voucher->expiryDate}} @endif
{{-- Amount --}} @if(!empty($voucher->amount)) Amount: {{$voucher->amount}}/= @endif
@endsection