2024-07-04 04:34:45 +00:00
|
|
|
|
<x-header />
|
|
|
|
|
|
|
|
|
|
<!-- Shop Details Section Begin -->
|
|
|
|
|
<section class="shop-details">
|
|
|
|
|
<div class="product__details__pic">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="product__details__breadcrumb">
|
|
|
|
|
<a href="./index.html">Home</a>
|
|
|
|
|
<a href="./shop.html">Shop</a>
|
|
|
|
|
<span>Product Details</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-3 col-md-3">
|
|
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link active" data-toggle="tab" href="#tabs-1" role="tab">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<div class="product__thumb__pic set-bg"
|
|
|
|
|
data-setbg="{{ URL::asset('uploads/products/' . $products->picture) }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" data-toggle="tab" href="#tabs-2" role="tab">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<div class="product__thumb__pic set-bg"
|
|
|
|
|
data-setbg="{{ URL::asset('uploads/products/' . $products->picture) }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" data-toggle="tab" href="#tabs-3" role="tab">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<div class="product__thumb__pic set-bg"
|
|
|
|
|
data-setbg="{{ URL::asset('uploads/products/' . $products->picture) }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" data-toggle="tab" href="#tabs-4" role="tab">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<div class="product__thumb__pic set-bg"
|
|
|
|
|
data-setbg="{{ URL::asset('uploads/products/' . $products->picture) }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<i class="fa fa-play"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-6 col-md-9">
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<div class="tab-pane active" id="tabs-1" role="tabpanel">
|
|
|
|
|
<div class="product__details__pic__item">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<img src="{{ URL::asset('uploads/products/' . $products->picture) }}" alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane" id="tabs-2" role="tabpanel">
|
|
|
|
|
<div class="product__details__pic__item">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<img src="{{ URL::asset('uploads/products/' . $products->picture) }}" alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane" id="tabs-3" role="tabpanel">
|
|
|
|
|
<div class="product__details__pic__item">
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<img src="{{ URL::asset('uploads/products/' . $products->picture) }}" alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-pane" id="tabs-4" role="tabpanel">
|
|
|
|
|
<div class="product__details__pic__item">
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<img src="{{ URL::asset('uploads/products/' . $products->picture) }}" alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<a href="https://www.youtube.com/watch?v=8PJ3_p7VqHw&list=RD8PJ3_p7VqHw&start_radio=1"
|
|
|
|
|
class="video-popup"><i class="fa fa-play"></i></a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<form action="{{ url::to('addToCart') }}" method="post">
|
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
|
|
<div class="product__details__content">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row d-flex justify-content-center">
|
|
|
|
|
<div class="col-lg-8">
|
|
|
|
|
<div class="product__details__text">
|
|
|
|
|
<h4>{{ $products->name }}</h4>
|
|
|
|
|
<div class="rating">
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<span> - 5 Reviews</span>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<h3>NRs. {{ $products->price }} <span>4000.00</span></h3>
|
|
|
|
|
<p>{{ $products->description }}</p>
|
|
|
|
|
<div class="product__details__option">
|
|
|
|
|
<div class="product__details__option__size">
|
|
|
|
|
<span>Size:</span>
|
|
|
|
|
<label for="xxl">xxl
|
|
|
|
|
<input type="radio" id="xxl">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="active" for="xl">xl
|
|
|
|
|
<input type="radio" id="xl">
|
|
|
|
|
</label>
|
|
|
|
|
<label for="l">l
|
|
|
|
|
<input type="radio" id="l">
|
|
|
|
|
</label>
|
|
|
|
|
<label for="sm">s
|
|
|
|
|
<input type="radio" id="sm">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__option__color">
|
|
|
|
|
<span>Color:</span>
|
|
|
|
|
<label class="c-1" for="sp-1">
|
|
|
|
|
<input type="radio" id="sp-1">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="c-2" for="sp-2">
|
|
|
|
|
<input type="radio" id="sp-2">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="c-3" for="sp-3">
|
|
|
|
|
<input type="radio" id="sp-3">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="c-4" for="sp-4">
|
|
|
|
|
<input type="radio" id="sp-4">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="c-9" for="sp-9">
|
|
|
|
|
<input type="radio" id="sp-9">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="product__details__cart__option">
|
|
|
|
|
<div class="quantity">
|
|
|
|
|
|
|
|
|
|
<input type="number" name="quantity" class="form-control" min="1"
|
|
|
|
|
max="{{ $products->quantity }}" value="1">
|
|
|
|
|
<input type="hidden" name="id" value="{{ $products->id }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<button type="submit" name="addToCart" class="primary-btn">Add to Cart</button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__btns__option">
|
|
|
|
|
<a href="#"><i class="fa fa-heart"></i> add to wishlist
|
|
|
|
|
</a>
|
|
|
|
|
<a href="#"><i class="fa fa-exchange"></i> Add To Compare</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__last__option">
|
|
|
|
|
<h5><span>Guaranteed Safe Checkout</span></h5>
|
|
|
|
|
<img src="{{ url::asset('img/shop-details/details-payment.png') }}" alt="">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><span>SKU:</span> 3812912</li>
|
|
|
|
|
<li><span>Categories:</span> Clothes</li>
|
|
|
|
|
<li><span>Tag:</span> Clothes, Skin, Body</li>
|
|
|
|
|
</ul>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<div class="product__details__tab">
|
|
|
|
|
<ul class="nav nav-tabs" role="tablist">
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link active" data-toggle="tab" href="#tabs-5"
|
|
|
|
|
role="tab">Description</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" data-toggle="tab" href="#tabs-6" role="tab">Customer
|
|
|
|
|
Previews(5)</a>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item">
|
|
|
|
|
<a class="nav-link" data-toggle="tab" href="#tabs-7" role="tab">Additional
|
|
|
|
|
information</a>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="tab-content">
|
|
|
|
|
<div class="tab-pane active" id="tabs-5" role="tabpanel">
|
|
|
|
|
<div class="product__details__tab__content">
|
|
|
|
|
<p class="note">Nam tempus turpis at metus scelerisque placerat nulla
|
|
|
|
|
deumantos
|
|
|
|
|
solicitud felis. Pellentesque diam dolor, elementum etos lobortis des mollis
|
|
|
|
|
ut risus. Sedcus faucibus an sullamcorper mattis drostique des commodo
|
|
|
|
|
pharetras loremos.</p>
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Products Infomation</h5>
|
|
|
|
|
<p>A Pocket PC is a handheld computer, which features many of the same
|
|
|
|
|
capabilities as a modern PC. These handy little devices allow
|
|
|
|
|
individuals to retrieve and store e-mail messages, create a contact
|
|
|
|
|
file, coordinate appointments, surf the internet, exchange text messages
|
|
|
|
|
and more. Every product that is labeled as a Pocket PC must be
|
|
|
|
|
accompanied with specific software to operate the unit and must feature
|
|
|
|
|
a touchscreen and touchpad.</p>
|
|
|
|
|
<p>As is the case with any new technology product, the cost of a Pocket PC
|
|
|
|
|
was substantial during it’s early release. For approximately $700.00,
|
|
|
|
|
consumers could purchase one of top-of-the-line Pocket PCs in 2003.
|
|
|
|
|
These days, customers are finding that prices have become much more
|
|
|
|
|
reasonable now that the newness is wearing off. For approximately
|
|
|
|
|
$350.00, a new Pocket PC can now be purchased.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Material used</h5>
|
|
|
|
|
<p>Polyester is deemed lower quality due to its none natural quality’s. Made
|
|
|
|
|
from synthetic materials, not natural like wool. Polyester suits become
|
|
|
|
|
creased easily and are known for not being breathable. Polyester suits
|
|
|
|
|
tend to have a shine to them compared to wool and cotton suits, this can
|
|
|
|
|
make the suit look cheap. The texture of velvet is luxurious and
|
|
|
|
|
breathable. Velvet is a great choice for dinner party jacket and can be
|
|
|
|
|
worn all year round.</p>
|
|
|
|
|
</div>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="tab-pane" id="tabs-6" role="tabpanel">
|
|
|
|
|
<div class="product__details__tab__content">
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Products Infomation</h5>
|
|
|
|
|
<p>A Pocket PC is a handheld computer, which features many of the same
|
|
|
|
|
capabilities as a modern PC. These handy little devices allow
|
|
|
|
|
individuals to retrieve and store e-mail messages, create a contact
|
|
|
|
|
file, coordinate appointments, surf the internet, exchange text messages
|
|
|
|
|
and more. Every product that is labeled as a Pocket PC must be
|
|
|
|
|
accompanied with specific software to operate the unit and must feature
|
|
|
|
|
a touchscreen and touchpad.</p>
|
|
|
|
|
<p>As is the case with any new technology product, the cost of a Pocket PC
|
|
|
|
|
was substantial during it’s early release. For approximately $700.00,
|
|
|
|
|
consumers could purchase one of top-of-the-line Pocket PCs in 2003.
|
|
|
|
|
These days, customers are finding that prices have become much more
|
|
|
|
|
reasonable now that the newness is wearing off. For approximately
|
|
|
|
|
$350.00, a new Pocket PC can now be purchased.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Material used</h5>
|
|
|
|
|
<p>Polyester is deemed lower quality due to its none natural quality’s. Made
|
|
|
|
|
from synthetic materials, not natural like wool. Polyester suits become
|
|
|
|
|
creased easily and are known for not being breathable. Polyester suits
|
|
|
|
|
tend to have a shine to them compared to wool and cotton suits, this can
|
|
|
|
|
make the suit look cheap. The texture of velvet is luxurious and
|
|
|
|
|
breathable. Velvet is a great choice for dinner party jacket and can be
|
|
|
|
|
worn all year round.</p>
|
|
|
|
|
</div>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="tab-pane" id="tabs-7" role="tabpanel">
|
|
|
|
|
<div class="product__details__tab__content">
|
|
|
|
|
<p class="note">Nam tempus turpis at metus scelerisque placerat nulla
|
|
|
|
|
deumantos
|
|
|
|
|
solicitud felis. Pellentesque diam dolor, elementum etos lobortis des mollis
|
|
|
|
|
ut risus. Sedcus faucibus an sullamcorper mattis drostique des commodo
|
|
|
|
|
pharetras loremos.</p>
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Products Infomation</h5>
|
|
|
|
|
<p>A Pocket PC is a handheld computer, which features many of the same
|
|
|
|
|
capabilities as a modern PC. These handy little devices allow
|
|
|
|
|
individuals to retrieve and store e-mail messages, create a contact
|
|
|
|
|
file, coordinate appointments, surf the internet, exchange text messages
|
|
|
|
|
and more. Every product that is labeled as a Pocket PC must be
|
|
|
|
|
accompanied with specific software to operate the unit and must feature
|
|
|
|
|
a touchscreen and touchpad.</p>
|
|
|
|
|
<p>As is the case with any new technology product, the cost of a Pocket PC
|
|
|
|
|
was substantial during it’s early release. For approximately $700.00,
|
|
|
|
|
consumers could purchase one of top-of-the-line Pocket PCs in 2003.
|
|
|
|
|
These days, customers are finding that prices have become much more
|
|
|
|
|
reasonable now that the newness is wearing off. For approximately
|
|
|
|
|
$350.00, a new Pocket PC can now be purchased.</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__details__tab__content__item">
|
|
|
|
|
<h5>Material used</h5>
|
|
|
|
|
<p>Polyester is deemed lower quality due to its none natural quality’s. Made
|
|
|
|
|
from synthetic materials, not natural like wool. Polyester suits become
|
|
|
|
|
creased easily and are known for not being breathable. Polyester suits
|
|
|
|
|
tend to have a shine to them compared to wool and cotton suits, this can
|
|
|
|
|
make the suit look cheap. The texture of velvet is luxurious and
|
|
|
|
|
breathable. Velvet is a great choice for dinner party jacket and can be
|
|
|
|
|
worn all year round.</p>
|
|
|
|
|
</div>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-07-04 12:07:47 +00:00
|
|
|
|
</form>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</section>
|
|
|
|
|
<!-- Shop Details Section End -->
|
|
|
|
|
|
|
|
|
|
<!-- Related Section Begin -->
|
|
|
|
|
<section class="related spad">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-12">
|
|
|
|
|
<h3 class="related-title">Related Product</h3>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-lg-3 col-md-6 col-sm-6 col-sm-6">
|
|
|
|
|
<div class="product__item">
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="product__item__pic set-bg"
|
|
|
|
|
data-setbg="{{ url::asset('img/product/product-1.jpg') }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span class="label">New</span>
|
|
|
|
|
<ul class="product__hover">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/heart.png') }}"
|
|
|
|
|
alt=""></a></li>
|
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/compare.png') }}"
|
|
|
|
|
alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span>Compare</span></a></li>
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/search.png') }}"
|
|
|
|
|
alt=""></a></li>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__item__text">
|
|
|
|
|
<h6>Piqué Biker Jacket</h6>
|
|
|
|
|
<a href="#" class="add-cart">+ Add To Cart</a>
|
|
|
|
|
<div class="rating">
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<h5>$67.24</h5>
|
|
|
|
|
<div class="product__color__select">
|
|
|
|
|
<label for="pc-1">
|
|
|
|
|
<input type="radio" id="pc-1">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="active black" for="pc-2">
|
|
|
|
|
<input type="radio" id="pc-2">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="grey" for="pc-3">
|
|
|
|
|
<input type="radio" id="pc-3">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-3 col-md-6 col-sm-6 col-sm-6">
|
|
|
|
|
<div class="product__item">
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="product__item__pic set-bg"
|
|
|
|
|
data-setbg="{{ url::asset('img/product/product-2.jpg') }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<ul class="product__hover">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/heart.png') }}"
|
|
|
|
|
alt=""></a></li>
|
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/compare.png') }}"
|
|
|
|
|
alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span>Compare</span></a></li>
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/search.png') }}"
|
|
|
|
|
alt=""></a></li>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__item__text">
|
|
|
|
|
<h6>Piqué Biker Jacket</h6>
|
|
|
|
|
<a href="#" class="add-cart">+ Add To Cart</a>
|
|
|
|
|
<div class="rating">
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<h5>$67.24</h5>
|
|
|
|
|
<div class="product__color__select">
|
|
|
|
|
<label for="pc-4">
|
|
|
|
|
<input type="radio" id="pc-4">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="active black" for="pc-5">
|
|
|
|
|
<input type="radio" id="pc-5">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="grey" for="pc-6">
|
|
|
|
|
<input type="radio" id="pc-6">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-3 col-md-6 col-sm-6 col-sm-6">
|
|
|
|
|
<div class="product__item sale">
|
2024-07-04 12:07:47 +00:00
|
|
|
|
<div class="product__item__pic set-bg"
|
|
|
|
|
data-setbg="{{ url::asset('img/product/product-3.jpg') }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span class="label">Sale</span>
|
|
|
|
|
<ul class="product__hover">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/heart.png') }}"
|
|
|
|
|
alt=""></a></li>
|
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/compare.png') }}"
|
|
|
|
|
alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span>Compare</span></a></li>
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/search.png') }}"
|
|
|
|
|
alt=""></a></li>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__item__text">
|
|
|
|
|
<h6>Multi-pocket Chest Bag</h6>
|
|
|
|
|
<a href="#" class="add-cart">+ Add To Cart</a>
|
|
|
|
|
<div class="rating">
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<h5>$43.48</h5>
|
|
|
|
|
<div class="product__color__select">
|
|
|
|
|
<label for="pc-7">
|
|
|
|
|
<input type="radio" id="pc-7">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="active black" for="pc-8">
|
|
|
|
|
<input type="radio" id="pc-8">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="grey" for="pc-9">
|
|
|
|
|
<input type="radio" id="pc-9">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-lg-3 col-md-6 col-sm-6 col-sm-6">
|
|
|
|
|
<div class="product__item">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<div class="product__item__pic set-bg"
|
|
|
|
|
data-setbg="{{ url::asset('img/product/product-4.jpg') }}">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<ul class="product__hover">
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/heart.png') }}"
|
|
|
|
|
alt=""></a></li>
|
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/compare.png') }}"
|
|
|
|
|
alt="">
|
2024-07-04 04:34:45 +00:00
|
|
|
|
<span>Compare</span></a></li>
|
2024-07-04 07:19:28 +00:00
|
|
|
|
<li><a href="#"><img src="{{ url::asset('img/icon/search.png') }}"
|
|
|
|
|
alt=""></a></li>
|
2024-07-04 04:34:45 +00:00
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="product__item__text">
|
|
|
|
|
<h6>Diagonal Textured Cap</h6>
|
|
|
|
|
<a href="#" class="add-cart">+ Add To Cart</a>
|
|
|
|
|
<div class="rating">
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
<i class="fa fa-star-o"></i>
|
|
|
|
|
</div>
|
|
|
|
|
<h5>$60.9</h5>
|
|
|
|
|
<div class="product__color__select">
|
|
|
|
|
<label for="pc-10">
|
|
|
|
|
<input type="radio" id="pc-10">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="active black" for="pc-11">
|
|
|
|
|
<input type="radio" id="pc-11">
|
|
|
|
|
</label>
|
|
|
|
|
<label class="grey" for="pc-12">
|
|
|
|
|
<input type="radio" id="pc-12">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
<!-- Related Section End -->
|
|
|
|
|
|
|
|
|
|
<!-- Footer Section Begin -->
|
|
|
|
|
<x-footer />
|
|
|
|
|
<!-- Footer Section End -->
|