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

My Bids

My Bids

@if(count($bids)) @foreach($bids as $bid)
BD

{{ strtoupper($bid->loanFund->reference) }}

 FUND REF

Bid placed on {{ $bid->created_at->format('l jS \\of F Y') }} for {{ strtoupper($bid->loanFund->reference) }}

Amount

₦ {{ number_format($bid->amount, 2) }}

Status

@if($bid->status == 1) Pending @elseif($bid->status == 2) Accepted @elseif($bid->status == 3) Cancelled @else Declined @endif

@endforeach @else

You've placed no bids yet

@endif

@endsection