{{-- /////////////////////////////////table des pieces et billets //////////////////////////////////--}}
{{-- ////////////////////////////////////////Billets////////////////////////////////////////////--}}
@if($detail_billets!=null)
Billet |
Nombre |
Montant |
@foreach ($detail_billets as $detail_billet)
{{$detail_billet['billet']}} |
{{$detail_billet['nombre_billet']}} |
$montant_billet = number_format((float)$detail_billet['montant_billet'], 0, '.', ' ');?>
{{$montant_billet}} DA |
@endforeach
$new_sum_billets = number_format((float)$sum_billets, 0, '.', ' ');?>
Total Billets |
{{$new_sum_billets}} DA |
@endif
{{-- ////////////////////////////////////////END Billets////////////////////////////////////////////--}}
{{-- ////////////////////////////////////////Pieces////////////////////////////////////////////--}}
@if($detail_pieces!=null)
Pièce |
Nombre |
Montant |
@foreach ($detail_pieces as $detail_piece)
{{$detail_piece['piece']}} |
{{$detail_piece['nombre_piece']}} |
$montant_piece = number_format((float)$detail_piece['montant_piece'], 0, '.', ' ');?>
{{$montant_piece}} DA |
@endforeach
$new_sum_pieces = number_format((float)$sum_pieces, 0, '.', ' ');?>
Total Pièces |
{{$new_sum_pieces}} DA |
@endif
{{-- ////////////////////////////////////////END Pieces////////////////////////////////////////////--}}
{{-- ////////////////////////////////END table des pieces et billets //////////////////////////////--}}