@extends('layouts.staff-new') @section('content')

Recent Investors with no Loan funds

@include('layouts.shared.error-display')
@forelse($investors->sortByDesc('created_at') as $investor) @empty

No User Found

@endforelse
S/N Reference Investor Name Wallet Balance Signup Date Phone Number Email
{{$loop->index+1}} {{$investor->reference}} {{$investor->name}} ₦{{number_format($investor->wallet, 2)}} {{$investor->created_at}} {{$investor->phone}} {{$investor->email}}
@endsection @section('page-js') @endsection