Khudadad's avatar

Problem with route

What is the problem with my route here, when I want to go back to my home page from this route:localhost:8000/news/create it gets one step back (localhost:8000/news) not to localhost:8000. This is the route: Route::get('news/create','NewsController@create'); And the controller: public function create() { return view('news.create'); } any help thanks

0 likes
3 replies
Khudadad's avatar

These are the related routes Route::get('/', 'HomeController@index'); Route::get('news/create','NewsController@create');

Please or to participate in this conversation.