฿ 1,999 ฿ 2,000
฿ 900 ฿ 1,000
฿ 12,000
1 x Application (60.16%) | 239.34ms |
1 x Booting (39.69%) | 157.92ms |
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
Params | |
---|---|
0 |
|
1 |
|
2 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
Params | |
---|---|
0 |
|
1 |
|
select * from `ec_currencies` order by `order` asc
Metadata | |
---|---|
Backtrace |
|
select count(*) as aggregate from `ec_products` inner join
(
SELECT DISTINCT
`ec_products`.id,
CASE
WHEN (
ec_products.sale_type = 0 AND
ec_products.sale_price <> 0
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 0 AND
ec_products.sale_price = 0
) THEN ec_products.price
WHEN (
ec_products.sale_type = 1 AND
(
ec_products.start_date > '2025-04-02 00:01:07' OR
ec_products.end_date < '2025-04-02 00:01:07'
)
) THEN ec_products.price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date <= '2025-04-02 00:01:07' AND
ec_products.end_date >= '2025-04-02 00:01:07'
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date IS NULL AND
ec_products.end_date >= '2025-04-02 00:01:07'
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date <= '2025-04-02 00:01:07' AND
ec_products.end_date IS NULL
) THEN ec_products.sale_price
ELSE ec_products.price
END AS final_price
FROM `ec_products`
) AS products_with_final_price
on `products_with_final_price`.`id` = `ec_products`.`id` where `ec_products`.`status` = 'published' and `ec_products`.`is_variation` = 0
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select distinct `ec_products`.*, `products_with_final_price`.`final_price`, (select count(*) from `ec_reviews` where `ec_products`.`id` = `ec_reviews`.`product_id` and `status` = 'published') as `reviews_count`, (select avg(star) from `ec_reviews` where `ec_products`.`id` = `ec_reviews`.`product_id` and `status` = 'published') as `reviews_avg` from `ec_products` inner join
(
SELECT DISTINCT
`ec_products`.id,
CASE
WHEN (
ec_products.sale_type = 0 AND
ec_products.sale_price <> 0
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 0 AND
ec_products.sale_price = 0
) THEN ec_products.price
WHEN (
ec_products.sale_type = 1 AND
(
ec_products.start_date > '2025-04-02 00:01:07' OR
ec_products.end_date < '2025-04-02 00:01:07'
)
) THEN ec_products.price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date <= '2025-04-02 00:01:07' AND
ec_products.end_date >= '2025-04-02 00:01:07'
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date IS NULL AND
ec_products.end_date >= '2025-04-02 00:01:07'
) THEN ec_products.sale_price
WHEN (
ec_products.sale_type = 1 AND
ec_products.start_date <= '2025-04-02 00:01:07' AND
ec_products.end_date IS NULL
) THEN ec_products.sale_price
ELSE ec_products.price
END AS final_price
FROM `ec_products`
) AS products_with_final_price
on `products_with_final_price`.`id` = `ec_products`.`id` where `ec_products`.`status` = 'published' and `ec_products`.`is_variation` = 0 order by `ec_products`.`order` asc, `ec_products`.`created_at` desc limit 24 offset 0
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `slugs` where `slugs`.`reference_id` in (1, 2, 3) and `slugs`.`reference_type` = 'Botble\Ecommerce\Models\Product'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_variations` where `ec_product_variations`.`configurable_product_id` in (1, 2, 3)
Metadata | |
---|---|
Backtrace |
|
select `ec_product_labels`.*, `ec_product_label_products`.`product_id` as `pivot_product_id`, `ec_product_label_products`.`product_label_id` as `pivot_product_label_id` from `ec_product_labels` inner join `ec_product_label_products` on `ec_product_labels`.`id` = `ec_product_label_products`.`product_label_id` where `ec_product_label_products`.`product_id` in (1, 2, 3)
Metadata | |
---|---|
Backtrace |
|
select `ec_product_attributes`.*, `ec_product_variations`.*, `ec_product_variation_items`.*, `ec_product_attribute_sets`.*, `ec_product_attributes`.`title` as `attribute_title` from `ec_product_variations` inner join `ec_product_variation_items` on `ec_product_variation_items`.`variation_id` = `ec_product_variations`.`id` inner join `ec_product_attributes` on `ec_product_attributes`.`id` = `ec_product_variation_items`.`attribute_id` inner join `ec_product_attribute_sets` on `ec_product_attribute_sets`.`id` = `ec_product_attributes`.`attribute_set_id` where `ec_product_attribute_sets`.`status` = 'published' and `ec_product_attribute_sets`.`is_use_in_product_listing` = 1 and `ec_product_variations`.`configurable_product_id` in (1, 2, 3)
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select `ec_product_collections`.*, `ec_product_collection_products`.`product_id` as `pivot_product_id`, `ec_product_collection_products`.`product_collection_id` as `pivot_product_collection_id` from `ec_product_collections` inner join `ec_product_collection_products` on `ec_product_collections`.`id` = `ec_product_collection_products`.`product_collection_id` where `ec_product_collection_products`.`product_id` in (1, 2, 3)
Metadata | |
---|---|
Backtrace |
|
select * from `mp_stores` where `mp_stores`.`id` in (14)
Metadata | |
---|---|
Backtrace |
|
select * from `slugs` where `slugs`.`reference_id` in (14) and `slugs`.`reference_type` = 'Botble\Marketplace\Models\Store'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_categories` order by `order` asc, `created_at` desc
Metadata | |
---|---|
Backtrace |
|
select * from `slugs` where `slugs`.`reference_id` in (38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 52, 54, 55, 56) and `slugs`.`reference_type` = 'Botble\Ecommerce\Models\ProductCategory'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_categories` where `ec_product_categories`.`parent_id` in (38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 52, 54, 55, 56)
Metadata | |
---|---|
Backtrace |
|
select * from `slugs` where `slugs`.`reference_id` in (41, 42, 44, 48, 49, 50, 52, 54, 56) and `slugs`.`reference_type` = 'Botble\Ecommerce\Models\ProductCategory'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_categories` where `ec_product_categories`.`parent_id` in (41, 42, 44, 48, 49, 50, 52, 54, 56)
Metadata | |
---|---|
Backtrace |
|
select `reference_id`, `reference_type`, `meta_key`, `meta_value` from `meta_boxes` where `meta_boxes`.`reference_id` in (38, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 52, 54, 55, 56) and `meta_boxes`.`reference_type` = 'Botble\Ecommerce\Models\ProductCategory'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select *, (select count(*) from `ec_products` where `ec_brands`.`id` = `ec_products`.`brand_id` and `is_variation` = 0 and `status` = 'published') as `products_count` from `ec_brands` where `status` = 'published' order by `order` asc, `created_at` desc
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `slugs` where `slugs`.`reference_id` in (1, 2, 3, 4, 5, 6, 7) and `slugs`.`reference_type` = 'Botble\Ecommerce\Models\Brand'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_attribute_sets` where `status` = 'published' and `is_searchable` = 1 order by `order` asc
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_product_attributes` where `ec_product_attributes`.`attribute_set_id` in (3) order by `order` asc
Metadata | |
---|---|
Backtrace |
|
select `ec_product_categories`.*, `ec_product_category_product`.`product_id` as `pivot_product_id`, `ec_product_category_product`.`category_id` as `pivot_category_id` from `ec_product_categories` inner join `ec_product_category_product` on `ec_product_categories`.`id` = `ec_product_category_product`.`category_id` where `ec_product_category_product`.`product_id` = 3
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_discounts` where `type` = 'promotion' and `start_date` <= '2025-04-02 00:01:07' and (`end_date` is null or `end_date` >= '2025-04-02 00:01:07') and (`target` in ('all-orders', 'amount-minimum-order') or (`target` in ('customer', 'group-products', 'specific-product', 'product-variant') and `product_quantity` = 1))
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `ec_flash_sales` where `status` = 'published' and date(`end_date`) > '2025-04-02' order by `created_at` desc
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select `ec_product_categories`.*, `ec_product_category_product`.`product_id` as `pivot_product_id`, `ec_product_category_product`.`category_id` as `pivot_category_id` from `ec_product_categories` inner join `ec_product_category_product` on `ec_product_categories`.`id` = `ec_product_category_product`.`category_id` where `ec_product_category_product`.`product_id` = 2
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select `ec_product_categories`.*, `ec_product_category_product`.`product_id` as `pivot_product_id`, `ec_product_category_product`.`category_id` as `pivot_category_id` from `ec_product_categories` inner join `ec_product_category_product` on `ec_product_categories`.`id` = `ec_product_category_product`.`category_id` where `ec_product_category_product`.`product_id` = 1
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `menus` inner join `language_meta` on `language_meta`.`reference_id` = `menus`.`id` where `status` = 'published' and `language_meta`.`reference_type` = 'Botble\Menu\Models\Menu' and `language_meta`.`lang_meta_code` = 'th'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
select * from `menu_nodes` where `menu_nodes`.`menu_id` in (1)
Metadata | |
---|---|
Backtrace |
|
select * from `menu_nodes` where `menu_nodes`.`parent_id` in (1, 66, 67, 68, 69, 70, 71, 72, 73, 74) order by `position` asc
Metadata | |
---|---|
Backtrace |
|
select * from `menu_locations` where `menu_locations`.`menu_id` in (1)
Metadata | |
---|---|
Backtrace |
|
select * from `widgets` where `theme` = 'martfury'
Metadata | |
---|---|
Bindings |
|
Backtrace |
|
200
[]
[]
0 of 0array:19 [▼ "cookie" => array:1 [▶ 0 => "XSRF-TOKEN=eyJpdiI6Imx6ZXcwK20zbCs2SzdONzI2cGVmTVE9PSIsInZhbHVlIjoibEdWa3gzLy80aDJseEVKZllrWmVtU1pJUGNiZktCbTE2c3htdzNJbERhbkJyUVRxeHByWXJKVlJVYjV0N2pvcHYxdlMyamtHSEdMcTBPL1IxYmZlbCtOdHY1RE94MVFtNzQ0NkVYZHZLTDVCczZzRUE0YkRXWUN4clEvK1RnY3QiLCJtYWMiOiIwODcwMmRmMzQ0ZDEyNTQxMzM1OWMxZjJkYWQ3YmVlZDliODI3ZTc4MzEzOTA1YmU1N2RlZWVhZTA0NzM4NWQwIiwidGFnIjoiIn0%3D; botble_session=eyJpdiI6IkIzekNhSi9rcXB3cDlKVDkzSjl6d1E9PSIsInZhbHVlIjoiWXpQaytEYm9TTklqUzFCcjNtWElFc2dpcW9IUGdaNTlsWWZUdFhVVHQxVnZVY0RoNlh6cEkwK05rNVI3a3FTRjhOVEdzTTUrY0tMSjBIcE1uM1FVbk0rSS9xVHYzUTkvTlRQMVU2cFR0SGtJYkxvZXRCLzVuMVppbGJxNXRvOHciLCJtYWMiOiI2ZGJkZTM4MWFlZDQ0MTM2ZmI2ZmNjNDA3YzFlOTE0Mzk0N2YyODNiOTQ4ODUzOWZmZjc5ZmZmNTYzOWZiOWUwIiwidGFnIjoiIn0%3D ◀XSRF-TOKEN=eyJpdiI6Imx6ZXcwK20zbCs2SzdONzI2cGVmTVE9PSIsInZhbHVlIjoibEdWa3gzLy80aDJseEVKZllrWmVtU1pJUGNiZktCbTE2c3htdzNJbERhbkJyUVRxeHByWXJKVlJVYjV0N2pvcHYxdlMya ▶" ] "priority" => array:1 [▶ 0 => "u=0, i" ] "accept-encoding" => array:1 [▶ 0 => "gzip, deflate, br, zstd" ] "sec-fetch-dest" => array:1 [▶ 0 => "document" ] "sec-fetch-user" => array:1 [▶ 0 => "?1" ] "sec-fetch-mode" => array:1 [▶ 0 => "navigate" ] "sec-fetch-site" => array:1 [▶ 0 => "none" ] "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" ] "user-agent" => array:1 [▶ 0 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" ] "upgrade-insecure-requests" => array:1 [▶ 0 => "1" ] "sec-ch-ua-platform" => array:1 [▶ 0 => ""Windows"" ] "sec-ch-ua-mobile" => array:1 [▶ 0 => "?0" ] "sec-ch-ua" => array:1 [▶ 0 => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" ] "cache-control" => array:1 [▶ 0 => "no-cache" ] "pragma" => array:1 [▶ 0 => "no-cache" ] "connection" => array:1 [▶ 0 => "close" ] "x-accel-internal" => array:1 [▶ 0 => "/internal-nginx-static-location" ] "x-real-ip" => array:1 [▶ 0 => "18.222.226.10" ] "host" => array:1 [▶ 0 => "chillchill.com" ] ]
0 of 0array:67 [▼ "USER" => "chillchill.com_7v71ipmi4h7" "HOME" => "/var/www/vhosts/chillchill.com" "SCRIPT_NAME" => "/public/index.php" "REQUEST_URI" => "/products" "QUERY_STRING" => "" "REQUEST_METHOD" => "GET" "SERVER_PROTOCOL" => "HTTP/1.0" "GATEWAY_INTERFACE" => "CGI/1.1" "REDIRECT_URL" => "/public/products" "REMOTE_PORT" => "50466" "SCRIPT_FILENAME" => "/var/www/vhosts/chillchill.com/httpdocs/public/index.php" "SERVER_ADMIN" => "root@localhost" "CONTEXT_DOCUMENT_ROOT" => "/var/www/vhosts/chillchill.com/httpdocs" "CONTEXT_PREFIX" => "" "REQUEST_SCHEME" => "https" "DOCUMENT_ROOT" => "/var/www/vhosts/chillchill.com/httpdocs" "REMOTE_ADDR" => "18.222.226.10" "SERVER_PORT" => "443" "SERVER_ADDR" => "103.212.181.10" "SERVER_NAME" => "chillchill.com" "SERVER_SOFTWARE" => "Apache" "SERVER_SIGNATURE" => "" "PATH" => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" "HTTP_COOKIE" => "XSRF-TOKEN=eyJpdiI6Imx6ZXcwK20zbCs2SzdONzI2cGVmTVE9PSIsInZhbHVlIjoibEdWa3gzLy80aDJseEVKZllrWmVtU1pJUGNiZktCbTE2c3htdzNJbERhbkJyUVRxeHByWXJKVlJVYjV0N2pvcHYxdlMyamtHSEdMcTBPL1IxYmZlbCtOdHY1RE94MVFtNzQ0NkVYZHZLTDVCczZzRUE0YkRXWUN4clEvK1RnY3QiLCJtYWMiOiIwODcwMmRmMzQ0ZDEyNTQxMzM1OWMxZjJkYWQ3YmVlZDliODI3ZTc4MzEzOTA1YmU1N2RlZWVhZTA0NzM4NWQwIiwidGFnIjoiIn0%3D; botble_session=eyJpdiI6IkIzekNhSi9rcXB3cDlKVDkzSjl6d1E9PSIsInZhbHVlIjoiWXpQaytEYm9TTklqUzFCcjNtWElFc2dpcW9IUGdaNTlsWWZUdFhVVHQxVnZVY0RoNlh6cEkwK05rNVI3a3FTRjhOVEdzTTUrY0tMSjBIcE1uM1FVbk0rSS9xVHYzUTkvTlRQMVU2cFR0SGtJYkxvZXRCLzVuMVppbGJxNXRvOHciLCJtYWMiOiI2ZGJkZTM4MWFlZDQ0MTM2ZmI2ZmNjNDA3YzFlOTE0Mzk0N2YyODNiOTQ4ODUzOWZmZjc5ZmZmNTYzOWZiOWUwIiwidGFnIjoiIn0%3D ◀XSRF-TOKEN=eyJpdiI6Imx6ZXcwK20zbCs2SzdONzI2cGVmTVE9PSIsInZhbHVlIjoibEdWa3gzLy80aDJseEVKZllrWmVtU1pJUGNiZktCbTE2c3htdzNJbERhbkJyUVRxeHByWXJKVlJVYjV0N2pvcHYxdlMya ▶" "HTTP_PRIORITY" => "u=0, i" "HTTP_ACCEPT_ENCODING" => "gzip, deflate, br, zstd" "HTTP_SEC_FETCH_DEST" => "document" "HTTP_SEC_FETCH_USER" => "?1" "HTTP_SEC_FETCH_MODE" => "navigate" "HTTP_SEC_FETCH_SITE" => "none" "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_USER_AGENT" => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" "HTTP_UPGRADE_INSECURE_REQUESTS" => "1" "HTTP_SEC_CH_UA_PLATFORM" => ""Windows"" "HTTP_SEC_CH_UA_MOBILE" => "?0" "HTTP_SEC_CH_UA" => ""HeadlessChrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"" "HTTP_CACHE_CONTROL" => "no-cache" "HTTP_PRAGMA" => "no-cache" "HTTP_CONNECTION" => "close" "HTTP_X_ACCEL_INTERNAL" => "/internal-nginx-static-location" "HTTP_X_REAL_IP" => "18.222.226.10" "HTTP_HOST" => "chillchill.com" "proxy-nokeepalive" => "1" "HTTPS" => "on" "PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY" => "0" "PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY" => "0" "SCRIPT_URI" => "https://chillchill.com/products" "SCRIPT_URL" => "/products" "UNIQUE_ID" => "Z@wb0wSMxG9VByD-7dxkEgAAAMU" "REDIRECT_STATUS" => "200" "REDIRECT_HTTPS" => "on" "REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY" => "0" "REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY" => "0" "REDIRECT_SCRIPT_URI" => "https://chillchill.com/products" "REDIRECT_SCRIPT_URL" => "/products" "REDIRECT_UNIQUE_ID" => "Z@wb0wSMxG9VByD-7dxkEgAAAMU" "REDIRECT_REDIRECT_STATUS" => "200" "REDIRECT_REDIRECT_HTTPS" => "on" "REDIRECT_REDIRECT_PASSENGER_DOWNLOAD_NATIVE_SUPPORT_BINARY" => "0" "REDIRECT_REDIRECT_PASSENGER_COMPILE_NATIVE_SUPPORT_BINARY" => "0" "REDIRECT_REDIRECT_SCRIPT_URI" => "https://chillchill.com/products" "REDIRECT_REDIRECT_SCRIPT_URL" => "/products" "REDIRECT_REDIRECT_UNIQUE_ID" => "Z@wb0wSMxG9VByD-7dxkEgAAAMU" "FCGI_ROLE" => "RESPONDER" "PHP_SELF" => "/public/index.php" "REQUEST_TIME_FLOAT" => 1743526867.1894 "REQUEST_TIME" => 1743526867 ]
0 of 0array:2 [▼ "XSRF-TOKEN" => "SP4wzyCmLhPmEqwvd6qiSOYuQstSTuPRB9LN1tbL" "botble_session" => "ihcgW8prZr7wiUdtGsZZp5wWIlVps6Hlp4kGElq4" ]
0 of 0array:10 [▼ "cache-control" => array:1 [▶ 0 => "private, must-revalidate" ] "date" => array:1 [▶ 0 => "Tue, 01 Apr 2025 17:01:07 GMT" ] "cms-version" => array:1 [▶ 0 => "5.27.0" ] "authorization-at" => array:1 [▶ 0 => "2025-03-26 09:26:52" ] "activated-license" => array:1 [▶ 0 => "Yes" ] "content-type" => array:1 [▶ 0 => "text/html; charset=UTF-8" ] "pragma" => array:1 [▶ 0 => "no-cache" ] "expires" => array:1 [▶ 0 => -1 ] "set-cookie" => array:2 [▶ 0 => "XSRF-TOKEN=eyJpdiI6ImJrTTJ6RjEySEJJayswUFdLZVNaRmc9PSIsInZhbHVlIjoiR0pqMXh4Qmo1VWg2WDF3L0djcVk3ajRjaXh3cDE3STU1N1BnRVY5YXE5bkc5UlV5ZElTR3ZrRG5Qa1VSMVpqakFSalZTeTNqdXY0Q0ViQnlCWlF1MmxkRFZ0S3lFT3I1RE95Zzh2REg2RW9UU0lkRzV3dnpvUnY1WHJtZ2NiTE0iLCJtYWMiOiJhN2E0MmU2YjYxZGNhMTI1ODZhMGNmNzA2YjY5YTc0ZGQzNjg4MDc5OTE2MTU4ODgwZTcwOTNkZDViNzlkNDQ1IiwidGFnIjoiIn0%3D; expires=Tue, 01-Apr-2025 19:01:07 GMT; Max-Age=7200; path=/; samesite=lax ◀XSRF-TOKEN=eyJpdiI6ImJrTTJ6RjEySEJJayswUFdLZVNaRmc9PSIsInZhbHVlIjoiR0pqMXh4Qmo1VWg2WDF3L0djcVk3ajRjaXh3cDE3STU1N1BnRVY5YXE5bkc5UlV5ZElTR3ZrRG5Qa1VSMVpqakFSalZTe ▶" 1 => "botble_session=eyJpdiI6IkJ5TnNXcURmZkJxKzZyenNPY1UwbVE9PSIsInZhbHVlIjoiOXcyQVJ4ZjR0Qkp4VlNRd0dMYlhHZHVnMnVVUDBnWVZkRFZ5S0JZWjZWQzk0MWJMdW9aV2dkZ0FHMnpzRll6NnF3WlVOVXJMbVZIMHlZYXFocmxBWCsvRFkzQjZtRm95dDBLTDFPSkkzbTdXalBidzhOYnhabTZRVjdMM3A2MUIiLCJtYWMiOiI1YWU5ZDBjNGM3Y2VjZThkMWJiZTg1MTk0OGRkNTZiZDlhNjdjMjhhYTc4Y2Y4ZWU5MmVlM2MyNDdlZGYwZjNlIiwidGFnIjoiIn0%3D; expires=Tue, 01-Apr-2025 19:01:07 GMT; Max-Age=7200; path=/; httponly; samesite=lax ◀botble_session=eyJpdiI6IkJ5TnNXcURmZkJxKzZyenNPY1UwbVE9PSIsInZhbHVlIjoiOXcyQVJ4ZjR0Qkp4VlNRd0dMYlhHZHVnMnVVUDBnWVZkRFZ5S0JZWjZWQzk0MWJMdW9aV2dkZ0FHMnpzRll6NnF3W ▶" ] "Set-Cookie" => array:2 [▶ 0 => "XSRF-TOKEN=eyJpdiI6ImJrTTJ6RjEySEJJayswUFdLZVNaRmc9PSIsInZhbHVlIjoiR0pqMXh4Qmo1VWg2WDF3L0djcVk3ajRjaXh3cDE3STU1N1BnRVY5YXE5bkc5UlV5ZElTR3ZrRG5Qa1VSMVpqakFSalZTeTNqdXY0Q0ViQnlCWlF1MmxkRFZ0S3lFT3I1RE95Zzh2REg2RW9UU0lkRzV3dnpvUnY1WHJtZ2NiTE0iLCJtYWMiOiJhN2E0MmU2YjYxZGNhMTI1ODZhMGNmNzA2YjY5YTc0ZGQzNjg4MDc5OTE2MTU4ODgwZTcwOTNkZDViNzlkNDQ1IiwidGFnIjoiIn0%3D; expires=Tue, 01-Apr-2025 19:01:07 GMT; path=/ ◀XSRF-TOKEN=eyJpdiI6ImJrTTJ6RjEySEJJayswUFdLZVNaRmc9PSIsInZhbHVlIjoiR0pqMXh4Qmo1VWg2WDF3L0djcVk3ajRjaXh3cDE3STU1N1BnRVY5YXE5bkc5UlV5ZElTR3ZrRG5Qa1VSMVpqakFSalZTe ▶" 1 => "botble_session=eyJpdiI6IkJ5TnNXcURmZkJxKzZyenNPY1UwbVE9PSIsInZhbHVlIjoiOXcyQVJ4ZjR0Qkp4VlNRd0dMYlhHZHVnMnVVUDBnWVZkRFZ5S0JZWjZWQzk0MWJMdW9aV2dkZ0FHMnpzRll6NnF3WlVOVXJMbVZIMHlZYXFocmxBWCsvRFkzQjZtRm95dDBLTDFPSkkzbTdXalBidzhOYnhabTZRVjdMM3A2MUIiLCJtYWMiOiI1YWU5ZDBjNGM3Y2VjZThkMWJiZTg1MTk0OGRkNTZiZDlhNjdjMjhhYTc4Y2Y4ZWU5MmVlM2MyNDdlZGYwZjNlIiwidGFnIjoiIn0%3D; expires=Tue, 01-Apr-2025 19:01:07 GMT; path=/; httponly ◀botble_session=eyJpdiI6IkJ5TnNXcURmZkJxKzZyenNPY1UwbVE9PSIsInZhbHVlIjoiOXcyQVJ4ZjR0Qkp4VlNRd0dMYlhHZHVnMnVVUDBnWVZkRFZ5S0JZWjZWQzk0MWJMdW9aV2dkZ0FHMnpzRll6NnF3W ▶" ] ]
0 of 0array:5 [▼ "_token" => "SP4wzyCmLhPmEqwvd6qiSOYuQstSTuPRB9LN1tbL" "language" => "th" "_flash" => array:2 [▶ "new" => [] "old" => [] ] "_previous" => array:1 [▶ "url" => "https://chillchill.com/products" ] "PHPDEBUGBAR_STACK_DATA" => [] ]