@extends('layouts.layout')
@section('content')
id |
Nom |
Téléphone |
Action |
@foreach($communes as $commune)
{{$commune->id}} |
{{$commune->nom}} |
{{$commune->telephone}} |
{!! Form::open(['method' => 'DELETE', 'route' => ['commune.destroy', $commune->id] ]) !!}
{!! Form::close() !!}
|
@endforeach
@endsection