Aimeos\Shop\Controller\AccountController::indexAction PHP Method

indexAction() public method

Returns the html for the "My account" page.
public indexAction ( ) : Illuminate\Contracts\View\View
return 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);
    }