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

GESTION DES INDICATEURS DE PERFORMANCE

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

{{ $message }}

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

{{ $message }}

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