Eccube\Controller\Mypage\DeliveryController::index PHP Method

index() public method

お届け先一覧画面.
public index ( Application $app, Request $request ) : Response
$app Eccube\Application
$request Symfony\Component\HttpFoundation\Request
return Symfony\Component\HttpFoundation\Response
    public function index(Application $app, Request $request)
    {
        $Customer = $app['user'];
        return $app->render('Mypage/delivery.twig', array('Customer' => $Customer));
    }
DeliveryController