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