@extends('layout') @section('title', 'Gestion des entreprises') @section('content')

@yield('title')


@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@php $counter = count($entreprises); @endphp @foreach ($entreprises as $entreprise) @endforeach
# Nom Adresse Numéro de téléphone Identifiant Client Gestan Actions
{{ $counter-- }} {{ $entreprise->nom }} {{$entreprise->adresse_1 . ' ' . $entreprise->adresse_2 }}
{{$entreprise->code_postal . ' ' . $entreprise->ville }}
{{ $entreprise->tel }} {{ $entreprise->client_id }}
@csrf @method('DELETE')
@endsection