@extends('BaseSistemaWeb') @section('CSS') @stop @section('Contenido')

Páginas de captura

{{--
--}}
@if (Session::has('message'))
{{ Session::get('message') }}
@endif

Listado de plantillas de páginas de captura

@forelse($Plantillas as $Plantilla) @empty @endforelse
Nombre Tipo Plantilla Acciones
{{ $Plantilla->nombre }} {{ $Plantilla->tipo }} {{ HTML::linkRoute('SysWebPAterrizajePlantillaEditar', 'Editar', array($Plantilla->id), array('class' => 'btn btn-warning')) }} {{ Form::open(array('method'=> 'post', 'route' => 'SysWebPAterrizajePlantillaDelete', 'style' => 'display: inline-block;')) }} {{ Form::hidden('id', $Plantilla->id, array('id' => 'idP')) }} {{ Form::submit('Eliminar', array('class' => 'btn btn-danger')) }} {{ Form::close() }}
No existe ningúna plantilla agregada
{{ HTML::linkRoute('SysWebPAterrizajePlantillaCrear', 'Agregar', array(), array('class' => 'btn btn-primary')) }}
@stop @section('JS') @stop @section('JSOr') @stop