@extends('layouts.investor') @section('content')

Wallet Transactions

Wallet Transactions

@if(count($transactions))
@foreach($transactions as $transaction) @endforeach
Reference Description Direction Amount Date
{{$transaction->reference}} {{$transaction->description}} {{$transaction->direction == 1 ? 'INFLOW' : 'OUTFLOW'}} ₦ {{ number_format($transaction->amount, 2) }} {{ $transaction->created_at->format('l jS \\of F Y') }}
@else

You've made no transactions yet

@endif

@endsection @section('page-js') @endsection