This has been cross posted on laracasts where an answer has been given...
i suggest,
instead of
<button type="button" class="btn btn-primary btn-lg btn-block">More Info </button>
use <a> tag
<a href="{{ route('classified.show', $row->id) }}">More Info</a>
note: if you used Resource Controller for Classfied, you will have a route 'product.show' then you passed the cassified or listing ID ( $row->id ) to the second argument so that you can get the info to your next page or route.
hope it helps. sorry for the english
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community