Level 5
please add / in route it might help
Route::get('/course',function(){
});
I'm trying to link a page to my homepage but I keep this error:
ErrorException in UrlGenerator.php line 304:
Route [course] not defined. (View: C:\xampp\htdocs\blog\resources\views\course.blade.php)
I'm using this code to link:
<a href="{{ url('/course') }}">Add Course</a><br>
And I'm using this code for routing:
Route::get('course', function () {
return view('course');
});
How can I resolve this issue?
Please or to participate in this conversation.