Level 47
what is in your Article ?the model file
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi! Im having a strange problem. for some reason, i am getting the following error when i try to go to this route: article/create. the complete error is this:
(2/2) NotFoundHttpException
No query results for model [App\Article].
This is my route:
Route::get('/article/create','ArticlesController@create');
And this is my controller:
public function create()
{
return view('articles.create');
}
All is standard things, dont know why this is happening. Any help would be great. Thanks.
Please or to participate in this conversation.