@extends('layouts.squelette') @section('css_header') @endsection @section('titre') {{ __('Factures clients') }} @endsection @section('titre_page') {{ __('Import / mise à jour des factures clients') }} @endsection @section('panel_boutons') @endsection @section('contenu') @isset($validation)

{{ __('Importation réalisée avec succès :') }}

{{ __('Nombre de lignes importées :') }} {{ @$nblignes }}


{{ __('Retour') }}
@endisset @empty($validation)
{{ __('Identifiant pré-importation :') }} {{ @$id_import }}
{{ __('Nombre de lignes traitées :') }} {{ @$nblignes }}

@if($error_message !='') {{ __('Erreurs :') }} {{ @$error_message }}

@endif
{{-- --}} @foreach (@$data as $element) {{-- --}} @endforeach
{{ __('Numéro intervention') }} {{ __('Statut') }} {{ __('Montant HT') }} {{ __('Montant TTC') }}{{ __('n° facture client') }}{{ __('Commentaire') }} {{ __('Importable') }}
{!! $element->int_number !='' ? '#'.$element->int_number.'' : $element->int_number !!} {!! $element->sta_nameFr !!} {!! $element->cusInv_amountHT !!} {!! $element->cusInv_amountTTC !!}{!! $element->customer_number !!}{!! $element->comment !!} {!! $element->importable =='1' ? 'oui' : 'non' !!}
@endempty @endsection @section('js_footer') @endsection @section('modale') @endsection