@extends('layouts.user') @section('title') @lang('Reedemed History') @endsection @section('breadcrumb') @lang('Reedemed History') @endsection @section('content')
@forelse ($history 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!')
{{$history->links()}}
@endsection