i'm trying to build a hyperlink from index.blade.php to login.blade.php by route. i defined a named route for this hyperlink but is not working.
here is my route code.
Route::get('/','HomeController@index');
Route::get('/login', 'HomeController@login_page')->name('login');
and here is my controller.
public function login_page()
{
return view('login');
}
and here is my view where i'm trying to set a hyperlink.
<li><a href="{{route('login')}}">Log-in</a></li>