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

E-Mail Marketing

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

Listado de formularios de {{ $ListaEmail->nombre }}

@forelse($Formularios as $Formulario) @empty @endforelse
Nombre Acciones
{{ $Formulario->nombre }}
No existe ningún formulario creado
{{ HTML::linkRoute('SysWebEmailMarketingFormulariosAgregar', 'Agregar', array($ListaEmail->id), array('class' => 'btn btn-primary')) }} {{ HTML::linkRoute('SysWebEmailMarketingListasSubscriptores', 'Regresar', array(), array('class' => 'btn btn-default')) }}
@stop @section('JS') @stop @section('JSOr') @if(Session::has('MensajeS')) new PNotify({ title: "Realizado", text: "{{ Session::get('MensajeS') }}", type: "success" }); @endif @if(Session::has('MensajeE')) new PNotify({ title: "Realizado", text: "{{ Session::get('MensajeE') }}", type: "error" }); @endif @stop