@extends('layouts.app') @section('title', 'Rapprochement bancaire · ' . $organization->name) @section('eyebrow', 'Piloter') @section('heading', 'Rapprochement bancaire') @section('content') @php $previousMonth = $month->copy()->subMonth()->format('Y-m'); $nextMonth = $month->copy()->addMonth()->format('Y-m'); @endphp
{{ ucfirst($month->translatedFormat('F Y')) }}
Voir les transactions
Solde consolidé banque {{ number_format($consolidated['bank_balance'], 2, ',', ' ') }} €
Solde consolidé comptable {{ number_format($consolidated['accounting_balance'], 2, ',', ' ') }} €
Écart expliqué {{ number_format($consolidated['explained_difference'], 2, ',', ' ') }} €
Écart net consolidé {{ number_format($consolidated['net_difference'], 2, ',', ' ') }} €
@foreach($accounts as $account) @php $closure = $closures->firstWhere('bank_account_id', $account->id); $stats = $transactionsByAccount->get($account->id); @endphp @endforeach
@endsection