@extends('admin.layout') @section('title', 'Gestion des profils') @section('content')

@yield('title')

@can('profils.create') @can('profils.create') @endcan @endcan

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@php $counter = count($profils); @endphp @foreach ($profils as $profil) @endforeach
# Fournisseur Référence Description Longueur barre (mm) Surface (m²/m) Surface totale (m²) Poids (kg/m) Poids Barre (kg) Prix (kg brut) Prix (m² laqué) Prix (barre brut) Prix (barre laqué)
{{ $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, ',', ' ') }}
@csrf @method('DELETE')
@endsection