@extends('layouts.main.main') @section('content')
Projet

{{ $project->projectref }} - {{ $project->customer->name }}

Fournisseur

{{ $supplier->name }}

@if($expenses->count() > 0)

@php $total = 0; @endphp @foreach ($expenses as $expense) @include('additional-expenses.show-project-supplier-ae-line', $expense) @php $total += $expense->ht_amount; @endphp @endforeach
Date Description Montant HT TVA  
Total {{ number_format($total,2,'.',' ') }}  
@else Il n'y a pour l'instant aucun frais complémentaire pour le fournisseur {{ $supplier->name }} sur le projet {{ $project->projectref }} pour {{ $project->customer->name }}. @endif

Ajouter une ligne

@endsection