@extends('layouts.horizontal', ['title' => 'Gift Voucher', 'topbarTitle' => 'Print Gift Voucher', 'nonav' => true]) @section('css') @endsection @section('content')
| # | Item | Description | Value |
|---|---|---|---|
| {{ $row }} | {{ $voucher->service_names }} | {{ $voucher->type }} | {{ $voucher->voucher_value }} |
| Service Worth: | {{ number_format($voucher->voucher_value,2) }} | ||
| Tax: | {{ number_format($voucher->voucher_tax,2) }} | ||
| CC Fee: | {{ number_format($voucher->voucher_cccharge,2) }} | ||
| Total Amount: | {{ number_format($voucher->amount,2) }} | ||
| Used Amount: | {{ number_format($voucher->amount - $voucher->remaining_amount,2) }} | ||
| Remaining: | {{ number_format($voucher->remaining_amount,2) }} | ||
| Validity: | {{ \Carbon\Carbon::parse($voucher->valid_until)->format('d M Y') }} | ||