我在加载页面时出现问题,我收到如下错误
我有路线功能
Route::get('/courses', 'HomeController@getCourseList');
我的控制器功能是
public function getCourseList() {
$getCourse = Course::where('status', 1)->get();
return view('courselisting')->with(['courses' => $getCourse]);
}
用于呈现页面的刀片代码是
<a class="read_more_btn" href="{{ url('/courses') }}">Browse all the Course</a>