@extends('layouts.horizontal', ['title' => 'Gift Voucher', 'topbarTitle' => 'Print Gift Voucher', 'nonav' => true]) @section('css') @endsection @section('content')
dark logo
{!! $business->business_address !!}
Phone: {{ $business->business_phone }}
{{ $voucher->customer_name }}
{{ $voucher->customer_cell }}
Gift Voucher

Gift Voucher: #{{ $voucher->voucher_number }}

ID: {{ $voucher->id_order_vouchers }}
Created On: {{ \Carbon\Carbon::parse($voucher->voucher_date)->format('d M Y') }}
@if($voucher->voucher_heading != "" && $voucher->voucher_heading != null)

{{ $voucher->voucher_heading }}

@endif
@php $row=1; $total=0; @endphp
# 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') }}
@endsection