@extends('layouts.app') @section('content')
Suivi des comptes
@csrf
Date Libellé Débit Crédit Lettrage
@php $i = 0; @endphp @foreach ($operations as $operation) @php $i++; @endphp @endforeach
{{(new DateTime($operation->date_oper))->format(config('myahs')['date_format'])}} {{mb_strtoupper($operation->libelle,'UTF-8')}} {{App\Lib\Format::number($operation->debit)}} {{App\Lib\Format::number($operation->credit)}} {{$operation->lettrage}}
{{--
TOTAL {{App\Lib\Format::number($sum_debit)}} {{App\Lib\Format::number($sum_credit)}}
--}}
@endsection @section('script') @endsection