@include("template.Head")
@include("template.Navbar")
@include("template.SideBar")

Journal de caisse du {{ FormatDate::format($dateActuelle) }}

@csrf

Caisse Principale :

@foreach ($journal_espece as $rows) @if($rows->type_mouvement == 'entree') @else @endif @endforeach
Repport du solde du {{ FormatDate::format($datePrecedente) }} {{ number_format($ant_espece,2,',',' ') }}
Date Réference Libellé Affectation Entrée Sortie SOLDE
{{ FormatDate::format($rows->date) }} {{ $rows->reference }} {{ $rows->libelle }} {{ $rows->affectation }}{{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->solde,2,',',' ') }}
Solde du {{ FormatDate::format($dateActuelle) }} {{ number_format($last_espece,2,',',' ') }}
{{-- caisse mvola --}}

Caisse Mvola :

@foreach ($journal_mvola as $rows) @if($rows->type_mouvement == 'entree') @else @endif @endforeach
Repport du solde du {{ FormatDate::format($datePrecedente) }} {{ number_format($ant_mvola,2,',',' ') }}
Date Réference Libellé Affectation Entrée Sortie SOLDE
{{ FormatDate::format($rows->date) }} {{ $rows->reference }} {{ $rows->libelle }} {{ $rows->affectation }}{{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->solde,2,',',' ') }}
Solde du {{ FormatDate::format($dateActuelle) }} {{ number_format($last_mvola,2,',',' ') }}
{{-- caisse banque --}}

Caisse Banque :

@foreach ($journal_banque as $rows) @if($rows->type_mouvement == 'entree') @else @endif @endforeach
Repport du solde du {{ FormatDate::format($datePrecedente) }} {{ number_format($ant_banque,2,',',' ') }}
Date Réference Libellé Affectation Entrée Sortie SOLDE
{{ FormatDate::format($rows->date) }} {{ $rows->reference }} {{ $rows->libelle }} {{ $rows->affectation }}{{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->montant,2,',',' ') }} {{ number_format($rows->solde,2,',',' ') }}
Solde du {{ FormatDate::format($dateActuelle) }} {{ number_format($last_banque,2,',',' ') }}
@include("template.Footer")