@extends('layouts.app') @section('content')
Liste des journaux de transactions
{{-- --}}
@csrf
@if(count($journaux)>0) @foreach ($journaux as $journal) @endforeach @else @endif
Date Caisse Réf journal Statut Caissier(ère) Débit Crédit
{{(new DateTime($journal->date_oper))->format(config('myahs.date_format'))}} {{$journal->caisse_id}} {{$journal->id_journal}} {{$journal->cloture}} {{$journal->nom_employe}} {{$journal->prenom_employe}} {{number_format($journal->debit,2,',',' ')}} {{number_format($journal->credit,2,',',' ')}}
Aucun compte n'a été sélectionné
@if(!empty($journaux)) @endif
@endsection @section('script') @endsection