@extends('layouts.app') @section('content')
Journal crédit
{{-- --}}
@csrf
@if(count($journaux)>0) @foreach ($journaux as $journal) @endforeach @else @endif
Date Caisse Réf journal Statut Caissier(ère) Octroi Remboursement Intérêt Pénalité
{{(new DateTime($journal->date_oper))->format(config('myahs.date_format'))}} {{$journal->caisse_id}} {{$journal->id_journal}} {{$journal->cloture}} {{$journal->nom_employe}} {{$journal->prenom_employe}} {{App\Lib\Format::number($journal->debit)}} {{App\Lib\Format::number($journal->credit)}} {{App\Lib\Format::number($journal->interet)}} {{App\Lib\Format::number($journal->penalite)}}
Aucun compte n'a été sélectionné
@if(!empty($journaux)) @endif
@endsection @section('script') @endsection