@extends('dashboard') @section('content')

LISTE DES PARCELLES

@foreach($parcelles as $p) @endforeach
Programme ou Site Numèro Parcelle Surface m² etat client Action
{{ $p->site }} {{ $p->numero }} {{ $p->surface }} {{ $p->etat }} @foreach(App\Models\Client::all() as $cl) @if($cl->id == $p->id_client) {{ $cl->prenom . ' ' . $cl->nom }} @endif @endforeach   @if(Auth::user()->type == 'Super Administrateur') @endif
@endsection