@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __('Factures prestataires') }} @endsection @section('titre_page') {{ __('Import / mise à jour des factures prestataires') }} @endsection @section('panel_boutons') @endsection @section('contenu') @isset($validation)
| {{ __('Numéro commande') }} | {{ __('Facture prestataire') }} | {{ __('Statut') }} | {{ __('Montant HT') }} | {{ __('Montant TTC') }} | {{ __('n° prestataire') }} | {{ __('Date facture') }} | {{ __('Commentaire') }} | {{ __('Importable') }} |
|---|---|---|---|---|---|---|---|---|
| {!! $element->numcommande !='' ? '#'.$element->numcommande.'' : $element->proReq_number !!} | {!! $element->importable =='1' ? 'Ajouter' : 'Ajout impossible' !!} | {!! $element->sta_nameFr !!} | {!! $element->proInv_amountHT !!} | {!! $element->proInv_amountTTC !!} | {!! $element->provider_number !!} | {!! date_en_fr($element->proInv_date) !!} | {!! $element->comment !!} | {!! $element->importable =='1' ? ''.trans('Oui').'' : ''.trans('Non').'' !!} |