รายละเอียดสินค้า
50kg Grey Barbell Set
ชุดบาร์เบล และดัมเบล เซท 50 Kg. ดัมเบลเซทสามารถปรับได้ ดีกว่าดัมเบลแบบน้ำหนักเดียว (Dumbbell fix) ที่ปรับไม่ได้
บาร์เบล และ ดัมเบล เซท 50 Kg. วัสดุแกน และตัวแผ่นน้ำหนักทำจากเหล็ก มีความแข็งแรงทนทานสูง
บาร์เบล และ ดัมเบล เซท 50 Kg. เหมาะสำหรับผู้ที่ต้องการออกกำลังกาย กับอุปกรณ์ที่หลากหลาย เเละต้องการเพิ่มขนาดกล้ามเนื้อ
บาร์เบล และ ดัมเบล เซท 50 Kg. เป็นเซทดัมเบลที่คุ้มค่าเป็นอย่างมาก มาพร้อมกล่องรถเข็น สามารถเล่นที่ไหนก็ได้ ตามใจผู้ใช้
เล่นกล้ามให้ครบทุกสัดส่วนด้วยอุปกรณ์ที่หลากหลาย ทั้งบาร์เบล และดัมเบล
สินค้าจะประกอบด้วย :
แผ่นน้ำหนัก 5kg. จำนวน 4 แผ่น
แผ่นน้ำหนัก 2.5kg. จำนวน 6 แผ่น
แผ่นน้ำหนัก 1.25kg. จำนวน 4 แผ่น
แกนดัมเบล 2 ชิ้น หนัก 1.25 kg. จำนวน2 แกน
แกนบาร์เบลหนัก 5.5 kg. ยาว 150 cm. จำนวน 1ชุด
ตัวล๊อคหนัก 0.25 kg. จำนวน 6 อัน
บรรจุภัณฑ์ 2.5kg
Q : สินค้าจะเหมาะกับเราไหมนะ อยากลองใช้ก่อนทำอย่างไรดี
A : สามารถทดลองใช้สินค้าได้ฟรี 28 สาขาทั่วประเทศ (สามารถดูรายละเอียดสาขาได้ที่ ศูนย์ให้บริการ )
Q : สินค้าชิ้นใหญ่มาก ต้องเสียค่าส่งแพงไหมเนี้ย
A : สินค้าจัดส่งฟรีทั่วประเทศ!
Q : ซื้อมาแล้วจะประกอบยังไง กลัวทำผิดจัง
A : ลูกค้ากรุงเทพฯ และปริมณล ติดตั้งให้ฟรี! ( ตามเงื่อนไขที่บริษัทกำหนด คลิก ) ลูกค้าต่างจังหวัดไม่ต้องน้อยใจไป มีคู่มือการประกอบพร้อมวิดิโอสอนให้ ประกอบง่ายมากใครก็ทำได้
Q : ถ้าเครื่องพังทำยังไงดี
A : หากเครื่องเกิดปัญหาขัดข้อง ลูกค้าจะได้รับแนวทางการประเมินอาการด้วยตัวเองก่อนจากแอดมิน หากยังไม่ดีขึ้น สามารถแจ้งซ่อมได้ โดยลูกค้านำสินค้ามาที่บริษัทแล้วรับการซ่อมฟรีได้เลย หากลูกค้าไม่สะดวกมาเอง สามารถแจ้งให้ช่างไปบริการนอกสถานที่ได้โดยจะมีค่าบริการเพิ่มเติม (สามารถดูค่าบริการเพิ่มเติมและศุนย์ให้บริการแต่ละสาขาได้ที่ 360 Ongsa Service )
Q : รับประกันกี่ปี
A : สินค้ารับประกันและมีบริการหลังการขาย โดยเงื่อนไขเป็นไปตามที่บริษัทกำหนด อ่านรายละเอียดเพิ่มเติม 360 Ongsa Warranty
Q : เวลาทำการ
A : สำนักงานใหญ่จะให้บริการในวันจันทร์-เสาร์ เวลา 9.00-18.00 น. (หยุดวันอาทิตย์และวันหยุดนักขัตฤกษ์) และเวลาทำการของแต่ละสาขาสามารถตรวจสอบหรือสอบถามได้ที่สาขานั้น ๆค่ะ ช่องทางการติดต่อสาขา ศูนย์ให้บริการ
นโยบายการจัดส่งสินค้า และบริการประกอบติดตั้งสินค้า
จัดส่งสินค้า
บริการประกอบติดตั้งสินค้า
เงื่อนไขการรับประกัน เป็นไปตามที่บริษัทกำหนด อ่านเพิ่มเติมได้ที่ 360 Ongsa Warranty
*
* @param string $path
* @return string
*/
public function hash($path)
{
return md5_file($path);
}
/**
* Write the contents of a file.
*
* @param string $path
* @param string $contents
* @param bool $lock
* @return int
*/
public function put($path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Prepend to a file.
*
* @param string $path
* @param string $data
* @return int
*/
public function prepend($path, $data)
{
if ($this->exists($path)) {
return $this->put($path, $data.$this->get($path));
}
return $this->put($path, $data);
}
/**
* Append to a file.
"file_put_contents(): Only 0 of 200 bytes written, possibly out of free disk space"
*
* @param string $path
* @return string
*/
public function hash($path)
{
return md5_file($path);
}
/**
* Write the contents of a file.
*
* @param string $path
* @param string $contents
* @param bool $lock
* @return int
*/
public function put($path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Prepend to a file.
*
* @param string $path
* @param string $data
* @return int
*/
public function prepend($path, $data)
{
if ($this->exists($path)) {
return $this->put($path, $data.$this->get($path));
}
return $this->put($path, $data);
}
/**
* Append to a file.
"/home/raankaon/domains/360ongsafitness.com/public_html/storage/framework/sessions/183jL5tCnfB2bBnlfC4377g5MaQrVTxfWIVqvrrW"
"a:3:{s:6:"_token";s:40:"P5yoFI1X5wJflyw8ihyQ0vpPTWgzHb7lAlK2Yh1q";s:9:"_previous";a:1:{s:3:"url";s:42:"https://www.360ongsafitness.com/product/98";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
2
/**
* {@inheritdoc}
*/
public function read($sessionId)
{
if ($this->files->exists($path = $this->path.'/'.$sessionId)) {
if (filemtime($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
return $this->files->get($path, true);
}
}
return '';
}
/**
* {@inheritdoc}
*/
public function write($sessionId, $data)
{
$this->files->put($this->path.'/'.$sessionId, $data, true);
return true;
}
/**
* {@inheritdoc}
*/
public function destroy($sessionId)
{
$this->files->delete($this->path.'/'.$sessionId);
return true;
}
/**
* {@inheritdoc}
*/
public function gc($lifetime)
{
$files = Finder::create()
"/home/raankaon/domains/360ongsafitness.com/public_html/storage/framework/sessions/183jL5tCnfB2bBnlfC4377g5MaQrVTxfWIVqvrrW"
"a:3:{s:6:"_token";s:40:"P5yoFI1X5wJflyw8ihyQ0vpPTWgzHb7lAlK2Yh1q";s:9:"_previous";a:1:{s:3:"url";s:42:"https://www.360ongsafitness.com/product/98";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
true
*
* @param string $data
* @return string
*/
protected function prepareForUnserialize($data)
{
return $data;
}
/**
* Save the session data to storage.
*
* @return bool
*/
public function save()
{
$this->ageFlashData();
$this->handler->write($this->getId(), $this->prepareForStorage(
serialize($this->attributes)
));
$this->started = false;
}
/**
* Prepare the serialized session data for storage.
*
* @param string $data
* @return string
*/
protected function prepareForStorage($data)
{
return $data;
}
/**
* Age the flash data for the session.
*
* @return void
"183jL5tCnfB2bBnlfC4377g5MaQrVTxfWIVqvrrW"
"a:3:{s:6:"_token";s:40:"P5yoFI1X5wJflyw8ihyQ0vpPTWgzHb7lAlK2Yh1q";s:9:"_previous";a:1:{s:3:"url";s:42:"https://www.360ongsafitness.com/product/98";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
if ($this->sessionConfigured()) {
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
}
return $response;
}
/**
* Perform any final actions for the request lifecycle.
*
* @param \Illuminate\Http\Request $request
* @param \Symfony\Component\HttpFoundation\Response $response
* @return void
*/
public function terminate($request, $response)
{
if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
$this->manager->driver()->save();
}
}
/**
* Start the session for the given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Contracts\Session\Session
*/
protected function startSession(Request $request)
{
return tap($this->getSession($request), function ($session) use ($request) {
$session->setRequestOnHandler($request);
$session->start();
});
}
/**
* Get the session implementation from the manager.
* @return void
*/
protected function terminateMiddleware($request, $response)
{
$middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
$this->gatherRouteMiddleware($request),
$this->middleware
);
foreach ($middlewares as $middleware) {
if (! is_string($middleware)) {
continue;
}
list($name) = $this->parseMiddleware($middleware);
$instance = $this->app->make($name);
if (method_exists($instance, 'terminate')) {
$instance->terminate($request, $response);
}
}
}
/**
* Gather the route middleware for the given request.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
protected function gatherRouteMiddleware($request)
{
if ($route = $request->route()) {
return $this->router->gatherRouteMiddleware($route);
}
return [];
}
/**
Request {
#json: null
#convertedFiles: null
#userResolver: Closure {
: "Illuminate\Auth\AuthServiceProvider"
: AuthServiceProvider { …}
: {
: {
: null
}
}
: {
: Application { …}
}
}
#routeResolver: Closure {
: "Illuminate\Routing\Router"
: Router { …}
: {
: Route { …}
}
}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/product/98"
#requestUri: "/product/98"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
: ""
: "html"
}
Response {}
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
protected function terminateMiddleware($request, $response)
{
$middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
$this->gatherRouteMiddleware($request),
$this->middleware
);
foreach ($middlewares as $middleware) {
if (! is_string($middleware)) {
Request {
#json: null
#convertedFiles: null
#userResolver: Closure {
: "Illuminate\Auth\AuthServiceProvider"
: AuthServiceProvider { …}
: {
: {
: null
}
}
: {
: Application { …}
}
}
#routeResolver: Closure {
: "Illuminate\Routing\Router"
: Router { …}
: {
: Route { …}
}
}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/product/98"
#requestUri: "/product/98"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
: ""
: "html"
}
Response {}
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Request {
#json: null
#convertedFiles: null
#userResolver: Closure {
: "Illuminate\Auth\AuthServiceProvider"
: AuthServiceProvider { …}
: {
: {
: null
}
}
: {
: Application { …}
}
}
#routeResolver: Closure {
: "Illuminate\Routing\Router"
: Router { …}
: {
: Route { …}
}
}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/product/98"
#requestUri: "/product/98"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
: ""
: "html"
}
Response {}
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
"/home/raankaon/domains/360ongsafitness.com/public_html/public/index.php"
| Key | Value |
| REDIRECT_UNIQUE_ID | "aSxPFH9zfU8RdCQsVEaNAgAAAK0"
|
| REDIRECT_HTTPS | "on"
|
| REDIRECT_SSL_TLS_SNI | "www.360ongsafitness.com"
|
| REDIRECT_STATUS | "200"
|
| UNIQUE_ID | "aSxPFH9zfU8RdCQsVEaNAgAAAK0"
|
| HTTPS | "on"
|
| SSL_TLS_SNI | "www.360ongsafitness.com"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_HOST | "www.360ongsafitness.com"
|
| PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
|
| SERVER_SIGNATURE | "" |
| SERVER_SOFTWARE | "Apache/2"
|
| SERVER_NAME | "www.360ongsafitness.com"
|
| SERVER_ADDR | "27.254.86.7"
|
| SERVER_PORT | "443"
|
| REMOTE_ADDR | "216.73.216.105"
|
| DOCUMENT_ROOT | "/home/raankaon/domains/360ongsafitness.com/private_html"
|
| REQUEST_SCHEME | "https"
|
| CONTEXT_PREFIX | "" |
| CONTEXT_DOCUMENT_ROOT | "/home/raankaon/domains/360ongsafitness.com/private_html"
|
| SERVER_ADMIN | "webmaster@360ongsafitness.com"
|
| SCRIPT_FILENAME | "/home/raankaon/domains/360ongsafitness.com/private_html/index.php"
|
| REMOTE_PORT | "20392"
|
| REDIRECT_URL | "/product/98"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| REQUEST_METHOD | "GET"
|
| QUERY_STRING | "" |
| REQUEST_URI | "/product/98"
|
| SCRIPT_NAME | "/index.php"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1764511508.017
|
| REQUEST_TIME | 1764511508
|
| APP_NAME | "Laravel"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:+ODBpFCXPoaphsAIfsKxW9CcKGDwe27KhgZd7KiUmnQ="
|
| APP_DEBUG | "true"
|
| APP_LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "127.0.0.1"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "" |
| DB_USERNAME | "" |
| DB_PASSWORD | "" |
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| QUEUE_DRIVER | "sync"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_DRIVER | "smtp"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| FACEBOOK_CLIENT_ID | "277752893637318"
|
| FACEBOOK_CLIENT_SECRET | "30ec9d726136da005d21ea09d8ea4df8"
|
| GOOGLE_CLIENT_ID | "796933991389-n43mh9i9lsh6h0dbrnib1ooif0ha3b1i.apps.googleusercontent.com"
|
| GOOGLE_CLIENT_SECRET | "CK_iZF8wg5vhkd9SXCBjKZSV"
|
| Key | Value |
| APP_NAME | "Laravel"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:+ODBpFCXPoaphsAIfsKxW9CcKGDwe27KhgZd7KiUmnQ="
|
| APP_DEBUG | "true"
|
| APP_LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "127.0.0.1"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "" |
| DB_USERNAME | "" |
| DB_PASSWORD | "" |
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| QUEUE_DRIVER | "sync"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_DRIVER | "smtp"
|
| MAIL_HOST | "smtp.mailtrap.io"
|
| MAIL_PORT | "2525"
|
| MAIL_USERNAME | "null"
|
| MAIL_PASSWORD | "null"
|
| MAIL_ENCRYPTION | "null"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| FACEBOOK_CLIENT_ID | "277752893637318"
|
| FACEBOOK_CLIENT_SECRET | "30ec9d726136da005d21ea09d8ea4df8"
|
| GOOGLE_CLIENT_ID | "796933991389-n43mh9i9lsh6h0dbrnib1ooif0ha3b1i.apps.googleusercontent.com"
|
| GOOGLE_CLIENT_SECRET | "CK_iZF8wg5vhkd9SXCBjKZSV"
|