App\Http\Controllers\PublicWebController::home PHP 메소드

home() 공개 메소드

Display homepage.
public home ( ) : response
리턴 response
    public function home()
    {
        $this->theme->layout('home');
        return $this->theme->of('public::home', compact('page'))->render();
    }
PublicWebController