Why i have NotFoundHttpException???
My code is working fine, except for this route.
I have another route which looks like this and it's working fine.
I tried to remove (id) and write id in controller
function npa()
{
$news = Post::where('category_id', 28)->orderBy('created_at', 'desc')->paginate(12);
return view('npa', compact('news'));
}
Route::get('/npa/{id}', 'HomeController@npa');