@foreach ($sellerProducts as $sellerProduct) @endforeach
Name Description Price Image Category Seller Action
{{ $sellerProduct->name }} {{ $sellerProduct->description }} {{ $sellerProduct->price }} {{ $sellerProduct->seller_product_category->name }} {{ $sellerProduct->user->username }} {!! Form::open(['route' => ['sellerProducts.destroy', $sellerProduct->id], 'method' => 'delete']) !!}
{!! Form::button('', [ 'type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')", ]) !!}
{!! Form::close() !!}
{{ $sellerProducts->links() }}