I've arranged my Controllers for folders: Ex: Panel / Concessionaire / Trademarks - > CarrosController.php
On Route I tried to report this way
Route::get('Painel\Concessesionaria\Marcas', ['as' => 'marcas', function () {
Route::get('marcas', 'MarcasController@index');
Route::post('marcas/view', 'MarcasController@view');
Route::post('marcas/add', 'MarcasController@add');
Route::post('marcas/delete', 'MarcasController@delete');
Route::post('marcas/edit', 'MarcasController@edit');
Route::post('marcas/update', 'MarcasController@update');
}]);
But you're bringing the following error localhost: 8000 / local
NotFoundHttpException in RouteCollection.php