@extends('layouts.scaffold') @section('main')

Show Batchemail

{{ link_to_route('batchemails.index', 'Return to all batchemails') }}

Student_email Email_subject Email_message
{{{ $batchemail->student_email }}} {{{ $batchemail->email_subject }}} {{{ $batchemail->email_message }}} {{ link_to_route('batchemails.edit', 'Edit', array($batchemail->id), array('class' => 'btn btn-info')) }} {{ Form::open(array('method' => 'DELETE', 'route' => array('batchemails.destroy', $batchemail->id))) }} {{ Form::submit('Delete', array('class' => 'btn btn-danger')) }} {{ Form::close() }}
@stop