@foreach ($plots as $plot) @endforeach
Name Size District Farm Crop Action
{{ $plot->name }} {{ $plot->size }} {{ $plot->size_unit }} {{ $plot->farm->address}} {{ $plot->farm->name }} {{ $plot->crop->name }} {!! Form::open(['route' => ['plots.destroy', $plot->id], 'method' => 'delete']) !!}
{!! Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')", ]) !!}
{!! Form::close() !!}
{{ $plots->links() }}