@extends('layouts.dash') @section('title') Districts @stop @section('subtitle_card',"") @section('content') @if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif @if (Session::has('success'))
{!! \Session::get('success') !!}
@endif

Districts

@if($user->can("VIL_AJO") || $user->HasRole("ADMINISTRATEUR")) @endif @foreach ($districts as $district) @endforeach
District Code Postal Royaume Nb Vehicules
{!! $district->nom !!} {!! $district->code_postal !!} {!! $district->royaume !!} {!! $district->nb_vehicules !!}
@endsection @section('scripts') @include("forms.scripts_datatable_nopage") @endsection