Well, they don’t work, because it HTML::link()will output the full HTML link, and the second attempt just uses plain text in the attribute href, so Laravel does not know that it should include something there.
You can try the following:
<button href="{{ route('normindex') }}" type="button" class="btn btn-default">Left</button>
route()helper will print the URL of the route you pass to it. This will require a named route in your file routes.php, for example:
Route::get('your-path', array('as' => 'normindex', function()
{
}));
source
share