@foreach($cropBuyers as $cropBuyer) @endforeach
Buying Price Crop On Sale Id Status Is Bought Action
{{ $cropBuyer->buying_price }} {{ $cropBuyer->crop_on_sale_id }} {{ $cropBuyer->status }} {{ $cropBuyer->is_bought }} {!! Form::open(['route' => ['cropBuyers.destroy', $cropBuyer->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}