Provide your vehicle details

Rhino-Rack REST API Documentation

Welcome to the Rhino-Rack REST API documentation. Here you’ll find details about our API and a complete list of available endpoints. If you have any problems or requests please contact digital-support@rhinorack.com.au at any time.

Access

  1. HTTP Basic Authentication

Methods

[ Jump to Models ]

Table of Contents

 

Products

Vehicles

Products

Up
get /{culture}/v1/categories
(categories)
 

Path parameters

culture (required)
Path Parameter — the culture required

Return type

Example data

Content-Type: application/json
{
  "categories" : [ {
    "children" : [ {
      "children" : [ {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      }, {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      } ],
      "imageUrl" : "imageUrl",
      "title" : "title",
      "categoryId" : "categoryId"
    }, {
      "children" : [ {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      }, {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      } ],
      "imageUrl" : "imageUrl",
      "title" : "title",
      "categoryId" : "categoryId"
    } ],
    "imageUrl" : "imageUrl",
    "title" : "title",
    "categoryId" : "categoryId"
  }, {
    "children" : [ {
      "children" : [ {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      }, {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      } ],
      "imageUrl" : "imageUrl",
      "title" : "title",
      "categoryId" : "categoryId"
    }, {
      "children" : [ {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      }, {
        "imageUrl" : "imageUrl",
        "title" : "title",
        "categoryId" : "categoryId"
      } ],
      "imageUrl" : "imageUrl",
      "title" : "title",
      "categoryId" : "categoryId"
    } ],
    "imageUrl" : "imageUrl",
    "title" : "title",
    "categoryId" : "categoryId"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfCategories

401

Authentication information is missing or invalid

default

Unexpected error

Up
get /{culture}/v1/product_search
(productSearch)
 

Path parameters

culture (required)
Path Parameter — the culture required

Query parameters

query (required)
Query Parameter — the query term required , min 2 characters

Return type

Example data

Content-Type: application/json
{
  "product_search" : [ {
    "shortDescription" : "shortDescription",
    "title" : "title",
    "stockCode" : "stockCode",
    "defaultImage" : "defaultImage"
  }, {
    "shortDescription" : "shortDescription",
    "title" : "title",
    "stockCode" : "stockCode",
    "defaultImage" : "defaultImage"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfAllSearchResults

401

Authentication information is missing or invalid

422

Unprocessable Entry Exception

default

Unexpected error

Up
get /{culture}/v1/products
(products)
 

Path parameters

culture (required)
Path Parameter — the culture required

Query parameters

codes (optional)
Query Parameter — comma delimited list of stockcodes
categories (optional)
Query Parameter — comma delimited list of categories UUIDs
page (optional)
Query Parameter — pagination index default: 1

Return type

Example data

Content-Type: application/json
{
  "products" : [ {
    "first_page_url" : "first_page_url",
    "path" : "path",
    "per_page" : 5,
    "total" : 7,
    "data" : [ {
      "productFeatures" : "productFeatures",
      "components" : [ {
        "qty" : 6,
        "stockCode" : "stockCode"
      }, {
        "qty" : 6,
        "stockCode" : "stockCode"
      } ],
      "price" : "price",
      "shortDescription" : "shortDescription",
      "categories" : [ "categories", "categories" ],
      "title" : "title",
      "specifications" : { },
      "stockCode" : "stockCode",
      "defaultImage" : "defaultImage"
    }, {
      "productFeatures" : "productFeatures",
      "components" : [ {
        "qty" : 6,
        "stockCode" : "stockCode"
      }, {
        "qty" : 6,
        "stockCode" : "stockCode"
      } ],
      "price" : "price",
      "shortDescription" : "shortDescription",
      "categories" : [ "categories", "categories" ],
      "title" : "title",
      "specifications" : { },
      "stockCode" : "stockCode",
      "defaultImage" : "defaultImage"
    } ],
    "last_page" : 5,
    "last_page_url" : "last_page_url",
    "next_page_url" : "next_page_url",
    "from" : 1,
    "to" : 2,
    "prev_page_url" : "prev_page_url",
    "current_page" : 0
  }, {
    "first_page_url" : "first_page_url",
    "path" : "path",
    "per_page" : 5,
    "total" : 7,
    "data" : [ {
      "productFeatures" : "productFeatures",
      "components" : [ {
        "qty" : 6,
        "stockCode" : "stockCode"
      }, {
        "qty" : 6,
        "stockCode" : "stockCode"
      } ],
      "price" : "price",
      "shortDescription" : "shortDescription",
      "categories" : [ "categories", "categories" ],
      "title" : "title",
      "specifications" : { },
      "stockCode" : "stockCode",
      "defaultImage" : "defaultImage"
    }, {
      "productFeatures" : "productFeatures",
      "components" : [ {
        "qty" : 6,
        "stockCode" : "stockCode"
      }, {
        "qty" : 6,
        "stockCode" : "stockCode"
      } ],
      "price" : "price",
      "shortDescription" : "shortDescription",
      "categories" : [ "categories", "categories" ],
      "title" : "title",
      "specifications" : { },
      "stockCode" : "stockCode",
      "defaultImage" : "defaultImage"
    } ],
    "last_page" : 5,
    "last_page_url" : "last_page_url",
    "next_page_url" : "next_page_url",
    "from" : 1,
    "to" : 2,
    "prev_page_url" : "prev_page_url",
    "current_page" : 0
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfProducts

401

Authentication information is missing or invalid

default

Unexpected error

Vehicles

Up
get /{culture}/v1/all_vehicles
(allVehicles)
 

Path parameters

culture (required)
Path Parameter — the culture required

Return type

Example data

Content-Type: application/json
{
  "manufacturers" : [ {
    "models" : [ {
      "modelId" : "modelId",
      "vehicles" : [ {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      }, {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      } ],
      "title" : "title"
    }, {
      "modelId" : "modelId",
      "vehicles" : [ {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      }, {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      } ],
      "title" : "title"
    } ],
    "manufacturerId" : "manufacturerId",
    "title" : "title"
  }, {
    "models" : [ {
      "modelId" : "modelId",
      "vehicles" : [ {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      }, {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      } ],
      "title" : "title"
    }, {
      "modelId" : "modelId",
      "vehicles" : [ {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      }, {
        "doors" : 0,
        "bodyType" : "bodyType",
        "endDate" : "endDate",
        "model" : "model",
        "attributes" : "attributes",
        "vehicleId" : "vehicleId",
        "title" : "title",
        "startDate" : "startDate",
        "products" : "products"
      } ],
      "title" : "title"
    } ],
    "manufacturerId" : "manufacturerId",
    "title" : "title"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfAllVehicles

401

Authentication information is missing or invalid

default

Unexpected error

Up
get /{culture}/v1/vehicles/manufacturers
(manufacturers)
 

Path parameters

culture (required)
Path Parameter — the culture required

Return type

Example data

Content-Type: application/json
{
  "manufacturers" : [ {
    "manufacturerId" : "manufacturerId",
    "title" : "title",
    "logoUrl" : "logoUrl"
  }, {
    "manufacturerId" : "manufacturerId",
    "title" : "title",
    "logoUrl" : "logoUrl"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfManufacturers

401

Authentication information is missing or invalid

default

Unexpected error

Up
get /{culture}/v1/vehicles/models
(models)
 

Path parameters

culture (required)
Path Parameter — the culture required

Query parameters

manufacturerId (required)
Query Parameter — the manufacturer UUID required

Return type

Example data

Content-Type: application/json
{
  "models" : [ {
    "modelId" : "modelId",
    "title" : "title"
  }, {
    "modelId" : "modelId",
    "title" : "title"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfModels

401

Authentication information is missing or invalid

404

not found Exception

422

Unprocessable Entry Exception

default

Unexpected error

Up
get /{culture}/v1/vehicles/vehicles
(vehicles)
 

Path parameters

culture (required)
Path Parameter — the culture required

Query parameters

modelId (required)
Query Parameter — the model UUID required

Return type

Example data

Content-Type: application/json
{
  "vehicles" : [ {
    "doors" : 0,
    "bodyType" : "bodyType",
    "endDate" : "endDate",
    "model" : "model",
    "attributes" : "attributes",
    "title" : "title",
    "startDate" : "startDate",
    "products" : "products"
  }, {
    "doors" : 0,
    "bodyType" : "bodyType",
    "endDate" : "endDate",
    "model" : "model",
    "attributes" : "attributes",
    "title" : "title",
    "startDate" : "startDate",
    "products" : "products"
  } ]
}

Produces

This API call produces the following media types according to the Accept request header; the media type will be conveyed by the Content-Type response header.
  • application/json

Responses

200

OK (successfully authenticated) ListOfVehicles

401

Authentication information is missing or invalid

404

not found Exception

422

Unprocessable Entry Exception

default

Unexpected error

Models

[ Jump to Methods ]

Table of Contents

  1. Cultures
  2. Exception
  3. ListOfAllSearchResults
  4. ListOfAllSearchResults_product_search
  5. ListOfAllVehicles
  6. ListOfAllVehicles_manufacturers
  7. ListOfAllVehicles_models
  8. ListOfAllVehicles_vehicles
  9. ListOfCategories
  10. ListOfCategories_categories
  11. ListOfCategories_children
  12. ListOfCategories_children_1
  13. ListOfManufacturers
  14. ListOfManufacturers_manufacturers
  15. ListOfModels
  16. ListOfModels_models
  17. ListOfProducts
  18. ListOfProducts_components
  19. ListOfProducts_data
  20. ListOfProducts_products
  21. ListOfVehicles
  22. ListOfVehicles_vehicles

Cultures Up

 

Exception Up

message (optional)
errors (optional)

ListOfAllSearchResults Up

ListOfAllSearchResults_product_search Up

stockCode (optional)
String The product stockcode.
title (optional)
String The product name.
defaultImage (optional)
String The product image url.
shortDescription (optional)
String The product description.

ListOfAllVehicles Up

ListOfAllVehicles_manufacturers Up

manufacturerId (optional)
String The manufacturer UUID.
title (optional)
String The model name.
models (optional)
array[ListOfAllVehicles_models] List of models for this manufacturer.

ListOfAllVehicles_models Up

modelId (optional)
String Model UUID
title (optional)
String Model name
vehicles (optional)
array[ListOfAllVehicles_vehicles] List of Vehicles for this Model

ListOfAllVehicles_vehicles Up

vehicleId (optional)
String The vehicle UUID.
title (optional)
String The vehicle name.
model (optional)
String The vehicle model.
doors (optional)
Integer The vehicle door num.
bodyType (optional)
String The vehicle body trype.
attributes (optional)
String The vehicle attributes.
startDate (optional)
String The vehicle start date.
endDate (optional)
String The vehicle end date.
products (optional)
String The vehicle's roof rack's stockcodes and load rates.

ListOfCategories Up

ListOfCategories_categories Up

categoryId (optional)
String Category UUID
title (optional)
String Category name
imageUrl (optional)
String Category image url
children (optional)

ListOfCategories_children Up

categoryId (optional)
String Category UUID
title (optional)
String Category name
imageUrl (optional)
String Category image url

ListOfCategories_children_1 Up

categoryId (optional)
String Category UUID
title (optional)
String Category name
imageUrl (optional)
String Category image url
children (optional)

ListOfManufacturers Up

ListOfManufacturers_manufacturers Up

manufacturerId (optional)
String The manufacturer UUID.
title (optional)
String The manufacturer name.
logoUrl (optional)
String The log url.

ListOfModels Up

models (optional)

ListOfModels_models Up

modelId (optional)
String The model UUID.
title (optional)
String The model name.

ListOfProducts Up

products (optional)

ListOfProducts_components Up

stockCode (optional)
String The product part stockcode.
qty (optional)
Integer The number product parts in package.

ListOfProducts_data Up

stockCode (optional)
String The product stock code.
title (optional)
String The product name.
shortDescription (optional)
String The product outline.
productFeatures (optional)
String The product long outline.
defaultImage (optional)
String The product main image url.
price (optional)
String The product price.
components (optional)
array[ListOfProducts_components] The product list of parts.
categories (optional)
array[String] The product category list.
specifications (optional)
Object The product's specs.

ListOfProducts_products Up

current_page (optional)
Integer The pagination index
data (optional)
first_page_url (optional)
String The pagination first page url
from (optional)
Integer The pagination start index
last_page (optional)
Integer The pagination lat page index
last_page_url (optional)
String The pagination last page url]
next_page_url (optional)
String The pagination next page url
path (optional)
String The pagination path
per_page (optional)
Integer The pagination per page
prev_page_url (optional)
String The pagination prev page url
to (optional)
Integer The pagination lastpage index
total (optional)
Integer The pagination total

ListOfVehicles Up

vehicles (optional)

ListOfVehicles_vehicles Up

title (optional)
String The vehicle name.
model (optional)
String The vehicle model.
doors (optional)
Integer The vehicle door num.
bodyType (optional)
String The vehicle body trype.
attributes (optional)
String The vehicle attributes.
startDate (optional)
String The vehicle start date.
endDate (optional)
String The vehicle end date.
products (optional)
String The vehicle's roof rack's stockcodes and load rates.
8.1.29PHP Version182msRequest Duration4MBMemory UsageGET {culture?}/{Page}Route
    • Booting (11.39ms)
    • Application (171ms)
    • 1 x Application (93.72%)
      170.66ms
      1 x Booting (6.26%)
      11.39ms
      15 templates were rendered
      • page.show (resources/views/page/show.blade.php)5bladefile
        Params
        0
        meta
        1
        page
        2
        SideMenus
        3
        Setting
        4
        slug
      • modules.breadcrumbs (resources/views/modules/breadcrumbs.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • partials.breadcrumbs (resources/views/partials/breadcrumbs.blade.php)1bladefile
        Params
        0
        breadcrumbs
      • page.section-switcher (resources/views/page/section-switcher.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • sections.heading (resources/views/sections/heading.blade.php)56bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
        53
        __currentLoopData
        54
        section
        55
        loop
      • sections.wysiwyg (resources/views/sections/wysiwyg.blade.php)56bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
        53
        __currentLoopData
        54
        section
        55
        loop
      • sections.spacer (resources/views/sections/spacer.blade.php)56bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
        53
        __currentLoopData
        54
        section
        55
        loop
      • sections.spacer (resources/views/sections/spacer.blade.php)56bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
        53
        __currentLoopData
        54
        section
        55
        loop
      • layouts.main (resources/views/layouts/main.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • site.hreflang (resources/views/site/hreflang.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • site.header (resources/views/site/header.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • global.language (resources/views/global/language.blade.php)60bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
        53
        __currentLoopData
        54
        Menu
        55
        loop
        56
        MainCategory
        57
        url
        58
        ChildCategory
        59
        ChildMenu
      • site.strip-banner-announcement (resources/views/site/strip-banner-announcement.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • site.cookieconsent (resources/views/site/cookieconsent.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      • site.footer (resources/views/site/footer.blade.php)53bladefile
        Params
        0
        __env
        1
        app
        2
        errors
        3
        reset_cookie_user_vehicle_id
        4
        Countries
        5
        culture
        6
        language
        7
        page_widget_locale
        8
        dealerModeKey
        9
        dealerModeValue
        10
        Menus
        11
        FooterMenus
        12
        BottomMenus
        13
        MainCategoryMenu
        14
        settings
        15
        default_meta_title
        16
        price_disclaimer_heading
        17
        default_meta_desc
        18
        enable_b2c
        19
        enable_b2b
        20
        hide_dealer
        21
        enable_custom_b2c
        22
        enable_spare_parts
        23
        enable_truck_bed_load_rating_calulator
        24
        netsuite_url
        25
        netsuite_app_url
        26
        cookie_bar_text
        27
        cookie_bar_show
        28
        cookie_bar_enforce
        29
        imperial_system
        30
        netsuite_session_variable
        31
        country
        32
        currency
        33
        tax
        34
        find_a_dealer_url
        35
        hide_price_global_value
        36
        hide_wishlist_subscribe
        37
        enable_wishlist
        38
        load_rating_disclaimer
        39
        load_rating_disclaimer_truck_bed
        40
        enable_order_pad
        41
        DealerSessionService
        42
        UserLocaleService
        43
        analytics_tag
        44
        footer_subscribe_form_id
        45
        footer_subscribe_form_guid
        46
        enable_product_load_rating
        47
        cart_url_params
        48
        meta
        49
        page
        50
        SideMenus
        51
        Setting
        52
        slug
      uri
      GET {culture?}/{Page}
      middleware
      country
      as
      getPage
      controller
      App\Http\Controllers\PageController@getPage
      namespace
      App\Http\Controllers
      prefix
      {culture?}
      where
      file
      app/Http/Controllers/PageController.php:146-163
      48 statements were executed, 14 of which were duplicated, 34 unique. Show only duplicated133ms
      • select * from `pages` where `slug` = 'rest-api-documentation' and `pages`.`deleted_at` is null and (`pages`.`lngId` is null or `pages`.`lngId` = 7) and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `lngId` desc, `scope` desc limit 1
        8.78ms/vendor/laravel/framework/src/Illuminate/Routing/ImplicitRouteBinding.php:61wen_rhino_rack
        Metadata
        Bindings
        • 0. rest-api-documentation
        • 1. 7
        • 2. 1
        • 3. 0
        Backtrace
        • 16. /vendor/laravel/framework/src/Illuminate/Routing/ImplicitRouteBinding.php:61
        • 17. /vendor/laravel/framework/src/Illuminate/Routing/Router.php:947
        • 18. middleware::bindings:41
        • 19. /vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180
        • 20. /app/Http/Middleware/Menus.php:150
      • select * from `page_sections` where `page_sections`.`page_id` in (2881) and `page_sections`.`deleted_at` is null and `isActive` = 1 order by `order` asc, `created_at` asc, `order` asc
        9.84ms/app/Models/Services/PageService.php:70wen_rhino_rack
        Metadata
        Bindings
        • 0. 1
        Backtrace
        • 19. /app/Models/Services/PageService.php:70
        • 20. /app/Http/Controllers/PageController.php:194
        • 21. /app/Http/Controllers/PageController.php:160
        • 22. /vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 23. /vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
      • select * from `page_section_items` where `page_section_items`.`page_section_id` in (8090, 8091, 8092, 8093) and `page_section_items`.`deleted_at` is null order by `order` asc, `page_section_items`.`id` asc
        3.07ms/app/Models/Services/PageService.php:70wen_rhino_rack
        Metadata
        Backtrace
        • 24. /app/Models/Services/PageService.php:70
        • 25. /app/Http/Controllers/PageController.php:194
        • 26. /app/Http/Controllers/PageController.php:160
        • 27. /vendor/laravel/framework/src/Illuminate/Routing/Controller.php:54
        • 28. /vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php:43
      • select * from `menus` where `position` = 3 and `parent_id` is null and `menus`.`deleted_at` is null and (`menus`.`lngId` is null or `menus`.`lngId` = 7) and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `order` asc, `lngId` desc, `scope` desc, `order` asc
        3.21ms/app/Models/Entities/Menu.php:58wen_rhino_rack
        Metadata
        Bindings
        • 0. 3
        • 1. 7
        • 2. 1
        • 3. 0
        Backtrace
        • 14. /app/Models/Entities/Menu.php:58
        • 15. /app/Models/Services/Cache/SystemCacheService.php:83
        • 16. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 19. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `menus` where `menus`.`parent_id` in (87, 89, 90, 91, 92, 93, 94, 864, 1008) and `menus`.`deleted_at` is null and (`menus`.`lngId` is null or `menus`.`lngId` = 7) and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `lngId` desc, `scope` desc, `order` asc
        2.97ms/app/Models/Entities/Menu.php:58wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 1
        • 2. 0
        Backtrace
        • 19. /app/Models/Entities/Menu.php:58
        • 20. /app/Models/Services/Cache/SystemCacheService.php:83
        • 21. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 24. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `pages` where 0 = 1 and `pages`.`deleted_at` is null and (`pages`.`lngId` is null or `pages`.`lngId` = 7) and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `lngId` desc, `scope` desc
        2.68ms/app/Models/Entities/Menu.php:58wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 1
        • 2. 0
        Backtrace
        • 19. /app/Models/Entities/Menu.php:58
        • 20. /app/Models/Services/Cache/SystemCacheService.php:83
        • 21. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 24. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1595 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.31ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1595
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('D2377297-85F4-4F80-A7C1-97C4C9D341B0') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        6.15ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. D2377297-85F4-4F80-A7C1-97C4C9D341B0
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1696 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.29ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1696
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('719E4E37-B238-460A-A121-8E3A650EBCE8') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.13ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 719E4E37-B238-460A-A121-8E3A650EBCE8
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1704 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.26ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1704
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:124
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('DFC85A3C-534F-4217-8BE9-7A54FBBD6B52') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.44ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. DFC85A3C-534F-4217-8BE9-7A54FBBD6B52
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:124
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1606 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.43ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1606
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('5C2DD4F5-056B-4961-B309-A37BA1BC5A4E') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.19ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 5C2DD4F5-056B-4961-B309-A37BA1BC5A4E
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1489 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.38ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1489
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('13674F82-0F17-442D-AD28-13A8C7683425') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        4.63ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 13674F82-0F17-442D-AD28-13A8C7683425
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 2622 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.8ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 2622
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('54891694-B598-4749-9332-822476DA4E14') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.15ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 54891694-B598-4749-9332-822476DA4E14
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1606 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.3ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1606
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('5C2DD4F5-056B-4961-B309-A37BA1BC5A4E') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.15ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 5C2DD4F5-056B-4961-B309-A37BA1BC5A4E
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1528 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.31ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1528
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('53A84FFF-69D8-4855-B3BC-44838AD2EF6F') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.17ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 53A84FFF-69D8-4855-B3BC-44838AD2EF6F
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1660 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.26ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1660
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:124
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('B8B347E3-63D0-406C-A666-E26FB2E4C35B') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.15ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. B8B347E3-63D0-406C-A666-E26FB2E4C35B
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:124
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1606 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.83ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1606
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('5C2DD4F5-056B-4961-B309-A37BA1BC5A4E') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.24ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 5C2DD4F5-056B-4961-B309-A37BA1BC5A4E
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1526 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.25ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1526
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('A421D742-61EB-43C9-978F-43AADD8F611B') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.15ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. A421D742-61EB-43C9-978F-43AADD8F611B
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1536 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.27ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1536
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('7A6D08A3-DB1C-445C-8FEE-52E108F5E215') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.14ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 7A6D08A3-DB1C-445C-8FEE-52E108F5E215
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1616 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.22ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1616
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('D4F7854F-8A52-470A-8F2E-AEED68C8F560') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.18ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. D4F7854F-8A52-470A-8F2E-AEED68C8F560
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1515 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.26ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1515
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:124
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('56CC127A-B3F9-41E6-B365-2FC71CBCBB82') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.16ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 56CC127A-B3F9-41E6-B365-2FC71CBCBB82
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:124
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1536 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.27ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1536
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('7A6D08A3-DB1C-445C-8FEE-52E108F5E215') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.13ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 7A6D08A3-DB1C-445C-8FEE-52E108F5E215
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1479 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.25ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1479
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('F7230420-188F-4C1B-8B0C-07B0F48E879A') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.13ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. F7230420-188F-4C1B-8B0C-07B0F48E879A
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1536 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.26ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1536
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('7A6D08A3-DB1C-445C-8FEE-52E108F5E215') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.14ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 7A6D08A3-DB1C-445C-8FEE-52E108F5E215
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1552 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.23ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1552
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('1F080BA4-2957-4128-92DF-5F3180D62872') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        5.83ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 1F080BA4-2957-4128-92DF-5F3180D62872
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1536 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.27ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1536
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:122
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('7A6D08A3-DB1C-445C-8FEE-52E108F5E215') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.14ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. 7A6D08A3-DB1C-445C-8FEE-52E108F5E215
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:122
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select `categoryId` from `PR_Categories` where `id` = 1584 and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc limit 1
        1.26ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 1584
        • 1. 1
        • 2. 0
        Backtrace
        • 15. /app/Models/Entities/Product/Category.php:160
        • 16. /app/Models/Services/Cache/SystemCacheService.php:123
        • 17. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 18. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 20. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `PR_Categories` where `lngId` = 7 and `PR_Categories`.`categoryId` in ('F6B7EEE8-8EA2-4E7C-A10C-878797DC391A') and `PR_Categories`.`deleted_at` is null and `isActive` = 1 and (`scope` is null or `scope` = 0) order by `scope` desc, `order` asc
        3.14ms/app/Models/Entities/Product/Category.php:160wen_rhino_rack
        Metadata
        Bindings
        • 0. 7
        • 1. F6B7EEE8-8EA2-4E7C-A10C-878797DC391A
        • 2. 1
        • 3. 0
        Backtrace
        • 20. /app/Models/Entities/Product/Category.php:160
        • 21. /app/Models/Services/Cache/SystemCacheService.php:123
        • 22. /vendor/laravel/framework/src/Illuminate/Cache/Repository.php:397
        • 23. /vendor/laravel/framework/src/Illuminate/Cache/CacheManager.php:408
        • 25. /app/Models/Services/Cache/CacheServiceBase.php:40
      • select * from `settings` where `key` = 'global_announcement' and `settings`.`deleted_at` is null and (`settings`.`lngId` is null or `settings`.`lngId` = 7) and `isActive` = 1 order by `lngId` desc limit 1
        2.5msview::site.strip-banner-announcement:12wen_rhino_rack
        Metadata
        Bindings
        • 0. global_announcement
        • 1. 7
        • 2. 1
        Backtrace
        • 15. view::site.strip-banner-announcement:12
        • 17. /vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 18. /vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 19. /vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 20. /vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      • select * from `settings` where `key` = 'global_announcement_dealers' and `settings`.`deleted_at` is null and (`settings`.`lngId` is null or `settings`.`lngId` = 7) and `isActive` = 1 order by `lngId` desc limit 1
        2.22msview::site.strip-banner-announcement:15wen_rhino_rack
        Metadata
        Bindings
        • 0. global_announcement_dealers
        • 1. 7
        • 2. 1
        Backtrace
        • 15. view::site.strip-banner-announcement:15
        • 17. /vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:110
        • 18. /vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php:58
        • 19. /vendor/livewire/livewire/src/ComponentConcerns/RendersLivewireComponents.php:69
        • 20. /vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php:70
      App\Models\Entities\Shared\Setting
      2
      App\Models\Entities\Product\Category
      40
      App\Models\Entities\Menu
      9
      App\Models\Entities\PageSection
      4
      App\Models\Entities\Page
      1
        _token
        RGaOuCEBoIdjAxGI7KFBbkHze8quifpbN7OgACae
        country
        au
        _flash
        array:2 [ "old" => [] "new" => [] ]
        lngId
        7
        session_culture
        en-au
        random_number
        33
        locale
        en
        _previous
        array:1 [ "url" => "https://rrweb.webexpertsnepal.com/en-au/rest-api-documentation" ]
        PHPDEBUGBAR_STACK_DATA
        []
        path_info
        /en-au/rest-api-documentation
        status_code
        200
        
        status_text
        OK
        format
        html
        content_type
        text/html; charset=UTF-8
        request_query
        []
        
        request_request
        []
        
        request_headers
        0 of 0
        array:15 [ "host" => array:1 [ 0 => "rrweb.webexpertsnepal.com" ] "connection" => array:1 [ 0 => "keep-alive" ] "pragma" => array:1 [ 0 => "no-cache" ] "cache-control" => array:1 [ 0 => "no-cache" ] "sec-ch-ua" => array:1 [ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "sec-ch-ua-mobile" => array:1 [ 0 => "?0" ] "sec-ch-ua-platform" => array:1 [ 0 => ""Windows"" ] "upgrade-insecure-requests" => array:1 [ 0 => "1" ] "user-agent" => array:1 [ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "accept" => array:1 [ 0 => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" ] "sec-fetch-site" => array:1 [ 0 => "none" ] "sec-fetch-mode" => array:1 [ 0 => "navigate" ] "sec-fetch-user" => array:1 [ 0 => "?1" ] "sec-fetch-dest" => array:1 [ 0 => "document" ] "accept-encoding" => array:1 [ 0 => "gzip, deflate, br, zstd" ] ]
        request_server
        0 of 0
        array:48 [ "REDIRECT_SCRIPT_URL" => "/en-au/rest-api-documentation" "REDIRECT_SCRIPT_URI" => "https://rrweb.webexpertsnepal.com/en-au/rest-api-documentation" "REDIRECT_HTTPS" => "on" "REDIRECT_SSL_TLS_SNI" => "rrweb.webexpertsnepal.com" "REDIRECT_STATUS" => "200" "SCRIPT_URL" => "/en-au/rest-api-documentation" "SCRIPT_URI" => "https://rrweb.webexpertsnepal.com/en-au/rest-api-documentation" "HTTPS" => "on" "SSL_TLS_SNI" => "rrweb.webexpertsnepal.com" "HTTP_HOST" => "rrweb.webexpertsnepal.com" "HTTP_CONNECTION" => "keep-alive" "HTTP_PRAGMA" => "no-cache" "HTTP_CACHE_CONTROL" => "no-cache" "HTTP_SEC_CH_UA" => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" "HTTP_SEC_CH_UA_MOBILE" => "?0" "HTTP_SEC_CH_UA_PLATFORM" => ""Windows"" "HTTP_UPGRADE_INSECURE_REQUESTS" => "1" "HTTP_USER_AGENT" => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_ACCEPT" => "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7" "HTTP_SEC_FETCH_SITE" => "none" "HTTP_SEC_FETCH_MODE" => "navigate" "HTTP_SEC_FETCH_USER" => "?1" "HTTP_SEC_FETCH_DEST" => "document" "HTTP_ACCEPT_ENCODING" => "gzip, deflate, br, zstd" "PATH" => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" "SERVER_SIGNATURE" => "<address>Apache/2.4.52 (Ubuntu) Server at rrweb.webexpertsnepal.com Port 443</address>\n" "SERVER_SOFTWARE" => "Apache/2.4.52 (Ubuntu)" "SERVER_NAME" => "rrweb.webexpertsnepal.com" "SERVER_ADDR" => "192.168.2.5" "SERVER_PORT" => "443" "REMOTE_ADDR" => "192.168.2.1" "DOCUMENT_ROOT" => "/var/www/rhinorack/web/public" "REQUEST_SCHEME" => "https" "CONTEXT_PREFIX" => "" "CONTEXT_DOCUMENT_ROOT" => "/var/www/rhinorack/web/public" "SERVER_ADMIN" => "webmaster@" "SCRIPT_FILENAME" => "/var/www/rhinorack/web/public/index.php" "REMOTE_PORT" => "47270" "REDIRECT_URL" => "/en-au/rest-api-documentation" "GATEWAY_INTERFACE" => "CGI/1.1" "SERVER_PROTOCOL" => "HTTP/1.1" "REQUEST_METHOD" => "GET" "QUERY_STRING" => "" "REQUEST_URI" => "/en-au/rest-api-documentation" "SCRIPT_NAME" => "/index.php" "PHP_SELF" => "/index.php" "REQUEST_TIME_FLOAT" => 1744283124.9601 "REQUEST_TIME" => 1744283124 ]
        request_cookies
        []
        
        response_headers
        0 of 0
        array:5 [ "content-type" => array:1 [ 0 => "text/html; charset=UTF-8" ] "cache-control" => array:1 [ 0 => "no-cache, private" ] "date" => array:1 [ 0 => "Thu, 10 Apr 2025 11:05:25 GMT" ] "set-cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IndycW5VekNJeFJJV3dFWkRPUEZoWmc9PSIsInZhbHVlIjoiRjNNcHFTNVN2cGIzWTd2QVg1M093NmVRbENORm92dGFLTzRwWlgrcjA4dUo0TE9aZlI0SXRTWnpIL1BJMjRhMllVMzR2a0VoaVo1bEZPUUFoYllndnN0aktOaHExOWxQS1hRVHlDYnJmL29qMWx3eVRvUXNoaDlPN1JWaU1zMy8iLCJtYWMiOiJjNTg3MzUwMGI3MTcyMGUyNjk5ZTQ2MzEzZDY1ZjdkODA3Njc1ODA3NTFhMzQ2ODI1ZTc5NTA3MTUyYzI3N2ZkIiwidGFnIjoiIn0%3D; expires=Sat, 10 May 2025 21:05:25 GMT; Max-Age=2628000; path=/XSRF-TOKEN=eyJpdiI6IndycW5VekNJeFJJV3dFWkRPUEZoWmc9PSIsInZhbHVlIjoiRjNNcHFTNVN2cGIzWTd2QVg1M093NmVRbENORm92dGFLTzRwWlgrcjA4dUo0TE9aZlI0SXRTWnpIL1BJMjRhMllVMzR2a" 1 => "rhino_rack_session=eyJpdiI6IjZPU3hkU1pobFRnWm5rb3pGN3RtUXc9PSIsInZhbHVlIjoiWUtoZVptOVZOUEhuSjlTVk1UcHFCWVlVVUxtUVBQam9rS1NjL05MdGxoRzZBR0VHWXpvZzhEK1hldHpMV01XMTRKaVdYc3VuOXlGY2RkYUhVSVJCR2VHcENzU2g4RGUxRGVYMWVSQ09HQUxGMkNmbkE2OXZlUFEzM2JBb1B4VGUiLCJtYWMiOiI4MjIzZjhmOTQzZWFiN2QxMzI1YjcxMDIyYWIzMTdjZmUxMDNkODkwNjJlOWQxOTM4NjAwNDBiMjZhZWNhY2I5IiwidGFnIjoiIn0%3D; expires=Sat, 10 May 2025 21:05:25 GMT; Max-Age=2628000; path=/; httponlyrhino_rack_session=eyJpdiI6IjZPU3hkU1pobFRnWm5rb3pGN3RtUXc9PSIsInZhbHVlIjoiWUtoZVptOVZOUEhuSjlTVk1UcHFCWVlVVUxtUVBQam9rS1NjL05MdGxoRzZBR0VHWXpvZzhEK1hldHpMV01XM" ] "Set-Cookie" => array:2 [ 0 => "XSRF-TOKEN=eyJpdiI6IndycW5VekNJeFJJV3dFWkRPUEZoWmc9PSIsInZhbHVlIjoiRjNNcHFTNVN2cGIzWTd2QVg1M093NmVRbENORm92dGFLTzRwWlgrcjA4dUo0TE9aZlI0SXRTWnpIL1BJMjRhMllVMzR2a0VoaVo1bEZPUUFoYllndnN0aktOaHExOWxQS1hRVHlDYnJmL29qMWx3eVRvUXNoaDlPN1JWaU1zMy8iLCJtYWMiOiJjNTg3MzUwMGI3MTcyMGUyNjk5ZTQ2MzEzZDY1ZjdkODA3Njc1ODA3NTFhMzQ2ODI1ZTc5NTA3MTUyYzI3N2ZkIiwidGFnIjoiIn0%3D; expires=Sat, 10-May-2025 21:05:25 GMT; path=/XSRF-TOKEN=eyJpdiI6IndycW5VekNJeFJJV3dFWkRPUEZoWmc9PSIsInZhbHVlIjoiRjNNcHFTNVN2cGIzWTd2QVg1M093NmVRbENORm92dGFLTzRwWlgrcjA4dUo0TE9aZlI0SXRTWnpIL1BJMjRhMllVMzR2a" 1 => "rhino_rack_session=eyJpdiI6IjZPU3hkU1pobFRnWm5rb3pGN3RtUXc9PSIsInZhbHVlIjoiWUtoZVptOVZOUEhuSjlTVk1UcHFCWVlVVUxtUVBQam9rS1NjL05MdGxoRzZBR0VHWXpvZzhEK1hldHpMV01XMTRKaVdYc3VuOXlGY2RkYUhVSVJCR2VHcENzU2g4RGUxRGVYMWVSQ09HQUxGMkNmbkE2OXZlUFEzM2JBb1B4VGUiLCJtYWMiOiI4MjIzZjhmOTQzZWFiN2QxMzI1YjcxMDIyYWIzMTdjZmUxMDNkODkwNjJlOWQxOTM4NjAwNDBiMjZhZWNhY2I5IiwidGFnIjoiIn0%3D; expires=Sat, 10-May-2025 21:05:25 GMT; path=/; httponlyrhino_rack_session=eyJpdiI6IjZPU3hkU1pobFRnWm5rb3pGN3RtUXc9PSIsInZhbHVlIjoiWUtoZVptOVZOUEhuSjlTVk1UcHFCWVlVVUxtUVBQam9rS1NjL05MdGxoRzZBR0VHWXpvZzhEK1hldHpMV01XM" ] ]
        session_attributes
        0 of 0
        array:9 [ "_token" => "RGaOuCEBoIdjAxGI7KFBbkHze8quifpbN7OgACae" "country" => "au" "_flash" => array:2 [ "old" => [] "new" => [] ] "lngId" => 7 "session_culture" => "en-au" "random_number" => 33 "locale" => "en" "_previous" => array:1 [ "url" => "https://rrweb.webexpertsnepal.com/en-au/rest-api-documentation" ] "PHPDEBUGBAR_STACK_DATA" => [] ]