@extends('layouts.master') @section('content')

Liste des details Budget:

@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('message_error'))

{{Session::get('message_error')}}

@endif
Imprimer pdf
@foreach($actions as $act) @endforeach
Action principale Code Budget Details Action
{{$act->nom_action}} {{$act->code_budget}} @foreach($detail_relies as $det) @if($act->id_action==$det->action_id) {{$det->nom_action_detail}} ; @endif @endforeach
@endsection @section('page-script') @stop