Laravel - View [.site.Home.index] not found

0

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') ;
    }
    
asked by anonymous 05.07.2018 / 20:59

1 answer

1

I was having the same error once in a project, the reason was that I had inadvertently moved my folder resources to another place, check if your resources folder is in the root of your project folder

    
05.07.2018 / 21:49