I'm new to Laravel and I'm getting the " NotFoundHttpException" when I put my routes in the callback function of the route group. this is a code from web.php:
Route::group (['prefix' => 'admin', 'middleware' => 'auth'] , function(){
Route::get('/home', [
'uses' => 'HomeController@index',
'as' => 'home'
]);
Route::get('/post/create',[
'uses'=>'PostsController@create',
'as' => 'post.create'
]);
Route::post('/post/store',[
'uses'=>'PostsController@store',
'as' => 'post.store'
]);
Route::get('/category/create',[
'uses'=>'CategoriesController@create',
'as' => 'category.create'
]);
Route::post('/category/store',[
'uses'=>'CategoriesController@store',
'as' => 'category.store'
]);
});
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire