@extends('layouts.admin') @section('titre') Liste des bueaux non enregistrés @endsection @section('content')

Liste des bureaux non enrégistrés


@foreach($provinces as $province)
{{$province->name}}
@foreach($province->departments()->orderBy('name')->get() as $departement) @foreach($departement->districts()->orderBy('name')->get() as $district) @foreach($district->votingCenters()->orderBy('name')->get() as $centre) @foreach($centre->bureaus()->orderBy('numero')->get() as $bureau) @endforeach @endforeach @endforeach @endforeach
PROVINCE COMMUNE ARRONDISSEMENT CENTRE BUREAU INSCRITS VOTANTS BLANCS SUFRAGES ABSTENTIONS
{{$province->name}} {{$departement->name}} {{$district->name}} {{$centre->name}} Bureau N°{{$bureau->numero}} {{$bureau->inscrit}} {{$bureau->votants}} {{$bureau->blancs}} {{$bureau->resultats()->sum('vote')}} {{$bureau->abstention}}
@endforeach
@endsection @section('footer') @endsection