|
{{ $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->quantite_restituer }}
|
{{ $location->date_location }}
|
{{ $location->date_restitution }}
|
{{ $location->date_prevue_restitution }}
|
{{ $location->restitution == 0 ? "EN ATTENTE" : "" }}
{{ $location->restitution == 1 ? "PARTIELLE" : "" }}
{{ $location->restitution == 2 ? "TOTALE" : "" }}
|
|