I opened my localhost today to continue giving start to my project and I will get this error in all the pages that I try to access, yesterday before closing the pages was working, can anyone help me? error
View [.site.Home.index] not found.
web.php
Route::get('/', 'SiteController@index');
Route::get('Contato', 'SiteController@Contato');
Route::get('Dicas', 'SiteController@Dicas');
sitecontroller:
public function Dicas(){
session_start();
return view('/site.Dicas.index') ;
}
public function Regulamento(){
session_start();
return view('/site.Regulamento.index') ;
}
public function Termos(){
session_start();
return view('site.Termos.index') ;
}
public function Tutorial(){
session_start();
return view('/site.Tutorial.index') ;
}