@extends('layouts.app') @section('content')
Journal
@if(count($journaux)) @foreach ($journaux as $journal) @endforeach @else @endif
Date Réf journal Caisse Libellé Montant
{{(new DateTime($journal->date_oper))->format(config('myahs')['date_format'])}} {{$journal->id_journal}} {{$journal->caisse_id}} {{$journal->libelle}} {{App\Lib\Format::number($journal->montant)}}
La liste est vide
@if(count($journaux)>0) @endif
@endsection