@foreach ($crops as $crop) @endforeach
Name Standard Price Sub Category Image Action
{{ $crop->name }} {{ $crop->standard_price }} {{ $crop->price_unit}} {{ $crop->sub_category->name }} {!! Form::open(['route' => ['crops.destroy', $crop->id], 'method' => 'delete']) !!}
{!! Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure you want to delete $crop->name ?')", ]) !!}
{!! Form::close() !!}
{{ $crops->links() }}