@extends('layouts.master') @section('css') {!! Html::style('css/jquery_ui.css')!!} {!! Html::style('css/datatable/dataTables.bootstrap.css')!!} @stop @section('content') @if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif
{!! Form::open(array('url'=>'datos/escogermatriz','class'=>'formulario'))!!}{!! csrf_field() !!}
{!! Form::select('matriz_id',$programas_select, NULL, $attributes = array('class' => 'form-control','id'=>'matriz_id','required' => 'required'))!!}
@if($errors->has('matriz')) {!! $errors->first('matriz') !!} @else {!! " " !!} @endif
{!!form::close()!!}

@if(count($matrices)>0) @foreach($matrices as $value) @endforeach
Matriz Programa Acciones
{!! $value->id!!} {!! $value->programa->descripcion!!}
@else
No existe ninguna matriz cargada
@endif
@stop @section('postscript') {!! Html::script('js/jquery_ui.js') !!} {!! Html::script('js/datatable/jquery.dataTables.js') !!} {!! Html::script('js/datatable/dataTables.bootstrap.js') !!} @stop