@extends('layouts.admin') @section('title', 'Partners · Aromaniacs ERP') @section('overline', 'Equity') @section('heading', 'Partners') @section('content')

Define each partner and optionally link an admin user. Capital sync attributes bottle intakes and standalone expenses to the linked user’s partner rows.

@if ($shareholders->isEmpty())

No partners yet.

@else @foreach ($shareholders as $sh) @endforeach
Name ERP user Order Status Actions
{{ $sh->display_name }} {{ $sh->user ? $sh->user->email : '—' }} {{ $sh->sort_order }} @if ($sh->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@endif
@endsection