@extends('layout.main') @section('content')
{{ formatCurrencyDecimals($totalInjections) }}
{{ formatCurrencyDecimals($totalWithdrawals) }}
{{ $netCapital >= 0 ? '+' : '' }}{{ formatCurrencyDecimals($netCapital) }}
{{ $totalRecords }}
No capital records found
Start by adding your first capital injection or withdrawal record.
{{ formatCurrencyDecimals($latestInjection->amount) }} on {{ \Carbon\Carbon::parse($latestInjection->date)->format('M d, Y') }}
@if($latestInjection->description){{ $latestInjection->description }}
@endif @elseNo injections recorded yet
@endif{{ formatCurrencyDecimals($latestWithdrawal->amount) }} on {{ \Carbon\Carbon::parse($latestWithdrawal->date)->format('M d, Y') }}
@if($latestWithdrawal->description){{ $latestWithdrawal->description }}
@endif @elseNo withdrawals recorded yet
@endif