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

Show Batchmaterial

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

Material_name
{{{ $batchmaterial->material_name }}} {{ link_to_route('batchmaterials.edit', 'Edit', array($batchmaterial->id), array('class' => 'btn btn-info')) }} {{ Form::open(array('method' => 'DELETE', 'route' => array('batchmaterials.destroy', $batchmaterial->id))) }} {{ Form::submit('Delete', array('class' => 'btn btn-danger')) }} {{ Form::close() }}
@stop