Method: GET
URI: /
Routes:
Array
(
    [0] => Array
        (
            [method] => GET
            [uri] => /
            [controller] => HomeController
            [action] => index
        )

    [1] => Array
        (
            [method] => GET
            [uri] => /catalog
            [controller] => CatalogController
            [action] => index
        )

    [2] => Array
        (
            [method] => GET
            [uri] => /catalog/product/{id}
            [controller] => CatalogController
            [action] => show
        )

    [3] => Array
        (
            [method] => GET
            [uri] => /cart
            [controller] => CartController
            [action] => index
        )

    [4] => Array
        (
            [method] => POST
            [uri] => /cart/add
            [controller] => CartController
            [action] => add
        )

    [5] => Array
        (
            [method] => POST
            [uri] => /cart/update
            [controller] => CartController
            [action] => update
        )

    [6] => Array
        (
            [method] => POST
            [uri] => /cart/remove
            [controller] => CartController
            [action] => remove
        )

    [7] => Array
        (
            [method] => GET
            [uri] => /order
            [controller] => OrderController
            [action] => create
        )

    [8] => Array
        (
            [method] => POST
            [uri] => /order
            [controller] => OrderController
            [action] => store
        )

    [9] => Array
        (
            [method] => GET
            [uri] => /order/success
            [controller] => OrderController
            [action] => success
        )

    [10] => Array
        (
            [method] => GET
            [uri] => /profile
            [controller] => ProfileController
            [action] => index
        )

    [11] => Array
        (
            [method] => POST
            [uri] => /profile
            [controller] => ProfileController
            [action] => showOrders
        )

    [12] => Array
        (
            [method] => GET
            [uri] => /admin
            [controller] => AdminController
            [action] => dashboard
        )

    [13] => Array
        (
            [method] => GET
            [uri] => /admin/login
            [controller] => AdminController
            [action] => loginForm
        )

    [14] => Array
        (
            [method] => POST
            [uri] => /admin/login
            [controller] => AdminController
            [action] => login
        )

    [15] => Array
        (
            [method] => GET
            [uri] => /admin/logout
            [controller] => AdminController
            [action] => logout
        )

    [16] => Array
        (
            [method] => GET
            [uri] => /admin/products
            [controller] => AdminController
            [action] => products
        )

    [17] => Array
        (
            [method] => POST
            [uri] => /admin/products/save
            [controller] => AdminController
            [action] => saveProduct
        )

    [18] => Array
        (
            [method] => GET
            [uri] => /admin/products/delete/{id}
            [controller] => AdminController
            [action] => deleteProduct
        )

    [19] => Array
        (
            [method] => GET
            [uri] => /admin/orders
            [controller] => AdminController
            [action] => orders
        )

    [20] => Array
        (
            [method] => POST
            [uri] => /admin/orders/update
            [controller] => AdminController
            [action] => updateOrderStatus
        )

    [21] => Array
        (
            [method] => GET
            [uri] => /admin/order/{id}
            [controller] => AdminController
            [action] => viewOrder
        )

    [22] => Array
        (
            [method] => GET
            [uri] => /admin/clients
            [controller] => AdminController
            [action] => clients
        )

    [23] => Array
        (
            [method] => GET
            [uri] => /admin/client/orders/{id}
            [controller] => AdminController
            [action] => clientOrders
        )

    [24] => Array
        (
            [method] => GET
            [uri] => /admin/adblocks
            [controller] => AdminController
            [action] => adBlocks
        )

    [25] => Array
        (
            [method] => POST
            [uri] => /admin/adblocks/save
            [controller] => AdminController
            [action] => saveAdBlock
        )

    [26] => Array
        (
            [method] => GET
            [uri] => /admin/adblocks/delete/{id}
            [controller] => AdminController
            [action] => deleteAdBlock
        )

)