@extends('layout') @section('title', '| axe') @section('content')

GESTION DES AXES STRATEGIQUES

@if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('error'))

{{ $message }}

@endif
LISTE D'ENREGISTREMENT DES AXES STRATEGIQUES
@foreach ($axes as $axe) @endforeach
# AXE STRATEGIQUE Actions
{{ $axe->id }} {{ $axe->intitule }} {!! Form::open(['method' => 'DELETE', 'route'=>['axe.destroy', $axe->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!}
@endsection