Elcodi\Store\CartBundle\Controller\OrderController::listAction PHP Method

listAction() public method

Order list
public listAction ( ) : Response
return Symfony\Component\HttpFoundation\Response Response
    public function listAction()
    {
        $orders = $this->get('elcodi.wrapper.customer')->get()->getOrders();
        return $this->renderTemplate('Pages:order-list.html.twig', ['orders' => $orders]);
    }