@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __("Factures clients") }} @endsection @section('titre_page') {{ __("Mise à jour des factures clients") }} @endsection @section('panel_boutons') @endsection @section('contenu') @isset($validation)
| {{ __("Num facture") }} | {{ __("Statut actuel") }} | {{ __("Payée") }} | {{ __("Montant") }} | {{ __("Date paiement") }} | {{ __("Commentaire") }} | {{ __("Importable") }} |
|---|---|---|---|---|---|---|
| {!! $element->cusInv_number !!} | {!! $element->sta_nameFr !!} | {!! $element->cusInv_payed == '1' ?'oui' : 'non' !!} | {!! number_format($element->cusInv_amountHT,2,',','') !!}€ | {!! date('d/m/Y', strtotime($element->cusInv_paymentDate)) !!} | {!! $element->comment !!} | {!! $element->importable =='1' ? 'oui' : 'non' !!} |