@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 @if(Session::has('message_success_parametros'))
{!! Session::get('message_success_parametros') !!}
@endif @if(Session::has('message_error_parametros'))
{!! Session::get('message_error_parametros') !!}
@endif
{!! Form::text('buscar',NULL, $attributes = array('class' => 'form-control','id'=>'buscar','placeholder'=>'Insertar código o descripción del movimiento'))!!}

@if(count($movimientos)>0) @foreach($movimientos as $value) @endforeach
ID Descripción Acciones
{!! $value->id!!} {!! $value->descripcion!!}
@else
No hay movimientos cargados
@endif
@stop @section('postscript') {!! Html::script('js/jquery_ui.js') !!} @stop