@extends('layouts.app') @section('content')
Initial Amount
{{ $currentBusiness->currency_symbol }}{{ number_format($fund->amount) }}
Top-ups
+{{ $currentBusiness->currency_symbol }}{{ number_format($fund->total_top_up) }}
Total Fund
{{ $currentBusiness->currency_symbol }}{{ number_format($totalFund) }}
Spent
{{ $currentBusiness->currency_symbol }}{{ number_format($spent) }}
Balance
{{ $currentBusiness->currency_symbol }}{{ number_format($fund->balance) }}
{{ $pct }}% remaining
{{ $fund->status }}
{{ $fund->location ?? '-' }}
{{ $fund->payment_method }}
{{ $fund->received_from ?? '-' }}
{{ $fund->approved_by ?? '-' }}
{{ \Carbon\Carbon::parse($fund->date)->format('d M Y') }}
{{ $fund->notes }}
| Date | Amount | Source | Notes |
|---|---|---|---|
| {{ $topup->date->format('d M Y') }} | +{{ $currentBusiness->currency_symbol }}{{ number_format($topup->amount) }} | {{ $topup->source ?? '-' }} | {{ $topup->notes ?? '-' }} |
|
No cash received yet. @if(auth()->user()->hasPermission($currentBusiness->id, 'can_edit_petty_cash')) @endif |
|||
| Total Cash In | +{{ $currentBusiness->currency_symbol }}{{ number_format(($topups ?? collect())->sum('amount')) }} | ||