php file inside app\Http\routes.php this is my route code
Route::group(['middleware' => ['web']], function (){
//getDashboard
Route::get('dashboard', [
'as' => 'get.register',
'uses' => 'dashboardController@getCreate'
]);
});
and when i go to my url http://localhost/crudlara/public/dashboard it displays the error of
Sorry, the page you are looking for could not be found. (1/1) NotFoundHttpException
Can someone help me figured this thing out? in laravel version 5.2.10 that route code im using runs well.
Any help is muchly appreciated. TIA