@foreach($harvests as $harvest) @endforeach
Farm Id Harvest Amount Action
{{ $harvest->farm_id }} {{ $harvest->harvest_amount }} {!! Form::open(['route' => ['harvests.destroy', $harvest->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}