@extends('backend-template') @section('content')

Send eSalvo Weekly Create New

@if(count($newsletters) > 0) @foreach($newsletters as $newsletter) @endforeach
Salvo Email Created Active Action
{{ $newsletter->name }} {{ $newsletter->created_at->format('d.M.Y') }} @if($newsletter->is_active) yes @else no @endif
  • Edit
  • {!! Form::open([ 'url' => route('newsletter.destroy', $newsletter->id), 'method' => 'delete']) !!} {!! Form::close() !!}
@else
No Items were found. You can add it  here
@endif {{ $newsletters->render() }} @stop