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

GESTION DES LIGNES D'ACTION

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

{{ $message }}

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

{{ $message }}

@endif
LISTE D'ENREGISTREMENT DES LIGNES D'ACTION
@foreach ($actions as $action) @endforeach
# Axte Stratégique Ligne d'action Actions
{{ $action->id }} {{ $action->axe->intitule }} {{ $action->ligne }} {!! Form::open(['method' => 'DELETE', 'route'=>['action.destroy', $action->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!}
@endsection