@extends('layouts.client_template') @section('content')
@if(count($transferhistory) > 0) @foreach($transferhistory as $transfer) @endforeach @endif
ID From Account To Account Date Amount
{{ $transfer->id }} {{ $transfer->from }} {{ $transfer->to }} {{ $transfer->created_at }} {{ number_format($transfer->amount, 2) }} USD
@endsection