@extends('layouts.front_layout') @section('content') @section('title', 'Voucher Redemption')
@include('user.sidebar')

Voucher Redemption


@if (session('msg')) @endif @php if($voucher->price_type == 'fixed') { $voucher_price = $voucher->price; } else { $voucher_price = $voucher->maximum_price; } $vat_rate = App\Helpers\Helper::getVoucherLevelVat($voucher->id); $vat = ($voucher_price*$vat_rate)/100; $net_amount = $voucher_price + $vat; @endphp
Voucher Title {{$voucher->title}}
Net Amount €{{ ($order->amount) - ($order->vat_total) }}
VAT €{{ $order->vat_total }}
Gross Amount €{{ $order->net_amount }}
Balance Amount €{{$redemption_balance}}
@csrf



@stop