@php
$counter = count($profils);
@endphp
@foreach ($profils as $profil)
| {{ $counter-- }} |
{{ $profil->fournisseur->nom ?? '' }} |
{{ $profil->reference }} |
{{ $profil->description }} |
{{ $profil->longueur_barre }} |
{{ $profil->surface }} |
{{ number_format($profil->surface_totale, 2, ',', ' ') }} |
{{ $profil->poids }} |
{{ number_format($profil->poids_barre, 2, ',', ' ') }} |
{{ number_format($prix_kg_brut, 2, ',', ' ') }} |
{{ number_format($prix_m²_laque, 2, ',', ' ') }} |
{{ number_format($profil->prix_barre_brut, 2, ',', ' ') }} |
{{ number_format($profil->prix_barre_laque, 2, ',', ' ') }} |
|
@endforeach