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

All Batchattendances

@if ($addp == '1')

{{ link_to_route('batchattendances.create', 'Add new batchattendance') }}

@endif @if ($batchattendances->count()) @foreach ($batchattendances as $batchattendance) @endforeach
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() }}
@else There are no batchattendances @endif @stop