@extends('layouts.user') @section('title') @lang('Payment History') @endsection @section('breadcrumb') @lang('Payment History') @endsection @push('extra')
@lang('Back') @endpush @section('content')
@forelse ($payments as $item) @empty @endforelse
@lang('Transaction') @lang('Amount') @lang('Details') @lang('Date')
{{$item->trnx}} {{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}} {{$item->details}} {{dateFormat($item->created_at)}}
@lang('No data found!')
@if ($payments->hasPages()) @endif
@endsection