No hay cuentas registradas.
| # | Nombre | Saldos | Cuenta por defecto | Acciones |
|---|---|---|---|---|
| {{ $account->id }} | {{ $account->name }} |
@foreach($account->currencies as $cur)
{{ $cur->code }}
{{ $cur->symbol }} {{ number_format($cur->pivot->balance, 2, ',', '.') }}
@endforeach
@if($account->currencies->isEmpty())
—
@endif
|
@if($account->is_default_mercadopago) MercadoPago @endif @if($account->is_default_stripe) Stripe @endif @if(!$account->is_default_mercadopago && !$account->is_default_stripe) — @endif |
|