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