@extends('layouts.user') @section('title') @lang('Reedem Voucher') @endsection @section('breadcrumb') @lang('Reedem Voucher') @endsection @section('content')
@csrf
@lang('Voucher Code : ')

@lang('Recent Reedemed Vouchers')

@forelse ($recentReedemed as $item) @empty @endforelse
@lang('Voucher Code') @lang('Amount') @lang('Reedemed at')
{{$item->code}} {{numFormat($item->amount)}} {{$item->currency->code}} {{dateFormat($item->updated_at)}}
@lang('No data found!')
@endsection @push('script') @endpush