@extends('layouts.app') @section('content')
Liste des journaux
@csrf
@if(count($caisses) > 1)
@endif
@if(count($journaux)>0) @foreach ($journaux as $journal) @endforeach @else @endif
Date Caisse Réf journal ID Caissier Caissier(ère) Statut Enc. début Entrée Sortie Enc. fin
{{(new DateTime($journal->date_oper))->format(config('myahs.date_format'))}} {{$journal->caisse_id}} {{$journal->id_journal}} {{$journal->id_employe}} {{$journal->nom_employe}} {{$journal->prenom_employe}} {{$journal->cloture}} {{App\Lib\Format::number($journal->solde_before)}} {{App\Lib\Format::number($journal->debit)}} {{App\Lib\Format::number($journal->credit)}} {{App\Lib\Format::number($journal->solde_before + $journal->debit - $journal->credit)}}
Aucun compte n'a été sélectionné
@if(!empty($journaux)) @endif
@endsection @section('script') @endsection