Aimeos\Shop\Controller\AccountController::indexAction PHP 메소드

indexAction() 공개 메소드

Returns the html for the "My account" page.
public indexAction ( ) : Illuminate\Contracts\View\View
리턴 Illuminate\Contracts\View\View View for rendering the output
    public function indexAction()
    {
        $params = app('\\Aimeos\\Shop\\Base\\Page')->getSections('account-index');
        return View::make('shop::account.index', $params);
    }