{{ __('Total devis') }} {!! @$total_devis !!} €
{{ __('Total commandes') }} {!! @$total_commandes !!} €
{{ __('Total factures') }} {!! @$total_factures !!} €

    @foreach ($interventions_list as $item)
  • @if($item->int_id == $intervention->int_id)
    @else
    @endif {{ date('d/m/Y', strtotime($item->int_createdDate)) }}
    #{{ $item->int_number }}

    {{ Str::limit($item->int_title, 50) }}
    {{ __('Activité') }} : {{ $item->act_nameFr }}
    {{ __('Statut') }} : {{ $item->sta_nameFr }}
    {{ __('Assignée à') }} : @if($item->use_idAssigned!='') {{ $item->username }} @elseif($item->pro_idAssigned!='') {{ $item->pro_socialReason }} @endif

  • @endForeach