@extends('layouts.scaffold') @section('main')
{{ link_to_route('batchattendances.index', 'Return to all batchattendances') }}
| Student_name | ||
|---|---|---|
| {{{ $batchattendance->student_name }}} | {{ link_to_route('batchattendances.edit', 'Edit', array($batchattendance->id), array('class' => 'btn btn-info')) }} | {{ Form::open(array('method' => 'DELETE', 'route' => array('batchattendances.destroy', $batchattendance->id))) }} {{ Form::submit('Delete', array('class' => 'btn btn-danger')) }} {{ Form::close() }} |