@extends('layouts.user') @section('title') @lang('Create Voucher') @endsection @section('breadcrumb') @lang('Create Voucher') @endsection @section('content')
@csrf
@lang('Amount : ') @lang('min : '.$charge->minimum.' '.$gs->curr_code) -- @lang('max : '.$charge->maximum.' '.$gs->curr_code)
@lang('Select Wallet')
  • @lang('Amount : ')
  • @lang('Total Charge : ')
  • @lang('Total Amount : ')

@lang('Recent Vouchers')

@forelse ($recentVouchers as $item) @empty @endforelse
@lang('Voucher Code') @lang('Amount') @lang('Status') @lang('Date')
{{$item->code}} {{numFormat($item->amount)}} {{$item->currency->code}} @if ($item->status == 0) @lang('unused') @elseif ($item->status == 1) @lang('used') @endif {{dateFormat($item->created_at)}}
@lang('No data found!')
@endsection @push('script') @endpush