@extends('layouts.admin') @section('title', 'Partner capital · Aromaniacs ERP') @section('overline', 'Equity') @section('heading', 'Capital ledger') @section('content')
Positive amounts increase capital at risk for that partner. Use negative amounts for withdrawals once governance supports them. Sync links new standalone expenses, and builds or fixes rows from bottle intakes (matching partner and ERP user).

Quick add

@csrf
@forelse ($contributions as $c) @empty @endforelse
When Partner Amount Source Link Notes
{{ $c->contributed_at?->format('d M Y, H:i') }} {{ $c->shareholder?->display_name }} {{ number_format((float) $c->amount, 2) }} {{ $c->source?->label() ?? $c->source }} @if ($c->expense_id) Expense #{{ $c->expense_id }} @elseif ($c->bottle_intake_id) Intake #{{ $c->bottle_intake_id }} @else — @endif {{ \Illuminate\Support\Str::limit($c->notes, 48) }}
No capital movements yet.
{{ $contributions->links() }}
@endsection