@layout('layouts.default')
@section('content')
{{ $practice->pr_date . ' ' . $practice->pr_time . ' : ' . $practice->person_id }}
{{ HTML::link_to_route('practices' , 'Practices', array(),array('class'=>'button')) }}
{{ HTML::link_to_route('edit_practice' , 'Edit', array($practice->id), array('class'=>'button')) }}
{{ Form::open('practice/delete', 'DELETE', array('style' => 'display:inline ;' )) }}
{{ Form::hidden('id', $practice->id) }}
{{ Form::submit('delete' , array( 'class' => 'button')) }}
{{ Form::close()}}
@endsection