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