@extends('layouts.admin') @section('contents')
There are {{ $transfers->total() }} transfers

transfer History

search
@forelse ($transfers as $transfer)

{{ date('d-m-y H:i:s', strtotime($transfer->created_at)) }}

REF: {{ $transfer->ref }}

{{ formatAmount($transfer->amount) }}

Fee: {{ formatAmount($transfer->fee) }}

From: {{ $transfer->sender_name }} To: {{ $transfer->receiver_name }}

Delete

@empty
Empty Record. No transfer found!
@endforelse
{{ $transfers->links('paginations.simple') }}
@endsection @section('scripts') @endsection