@extends('layouts.user_type.auth') @section('content') Suppression d'une location × Etes-vous sûr(e) de vouloir supprimer cet élément ? LISTE DES LOCATIONS CODE DE LA LOCATION AUTORITE CHANTIER DESCRIPTION MATERIEL QUANTITE LOUEE DATE DE LOCATION DATE PREVUE POUR LA RESTITUTION ACTION @foreach($locations as $location) {{ $location->code_location }} {{ DB::table("personnels")->find($location->autorite)->nom }} {{ DB::table("chantiers")->find($location->chantier)->code_chantier }} {{ $location->description }} {{ DB::table("materiaus")->find($location->materiel)->nom }} {{ $location->quantite_louer }} {{ $location->date_location }} {{ $location->date_prevue_restitution }} @endforeach {{ $locations->links() }} @endsection