mirror of https://github.com/4xmen/xshop.git
remove duplicated assets
added latest products theme part fix some bugs updated part seederpull/49/head
parent
5b257a3da4
commit
174775fc69
@ -1,4 +1,6 @@
|
|||||||
document.querySelector('#rect-toggle').addEventListener('click',function (e) {
|
document.addEventListener('DOMContentLoaded',function () {
|
||||||
|
document.querySelector('#rect-toggle')?.addEventListener('click',function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
document.querySelector('#RecetMenu').classList.toggle('show-menu');
|
document.querySelector('#RecetMenu').classList.toggle('show-menu');
|
||||||
|
});
|
||||||
})
|
})
|
||||||
|
@ -0,0 +1,56 @@
|
|||||||
|
<section class='LatestProducts'>
|
||||||
|
<div class="{{gfx()['container']}}">
|
||||||
|
<h1>
|
||||||
|
{{__("Latest products")}}
|
||||||
|
</h1>
|
||||||
|
<div class="row">
|
||||||
|
@foreach(\App\Models\Product::where('status',1)->limit(4)->get() as $product)
|
||||||
|
<div class="col-lg-3 col-md-2">
|
||||||
|
<div class="product-item">
|
||||||
|
<a class="fav-btn" data-slug="{{$product->slug}}" data-is-fav="{{$product->isFav()}}"
|
||||||
|
data-bs-custom-class="custom-tooltip"
|
||||||
|
data-bs-toggle="tooltip" data-bs-placement="auto"
|
||||||
|
title="{{__("Add to / Remove from favorites")}}">
|
||||||
|
<i class="ri-heart-line"></i>
|
||||||
|
<i class="ri-heart-fill"></i>
|
||||||
|
</a>
|
||||||
|
<a class="compare-btn" data-slug="{{$product->slug}}"
|
||||||
|
data-bs-custom-class="custom-tooltip"
|
||||||
|
data-bs-toggle="tooltip" data-bs-placement="auto"
|
||||||
|
title="{{__("Add to/ Remove from compare list")}}">
|
||||||
|
<i class="ri-scales-3-line"></i>
|
||||||
|
</a>
|
||||||
|
<a href="{{$product->webUrl()}}">
|
||||||
|
<img src="{{$product->imgUrl()}}" alt="{{$product->name}}">
|
||||||
|
<h3>
|
||||||
|
{{$product->name}}
|
||||||
|
</h3>
|
||||||
|
<div class="prices">
|
||||||
|
@if($product->hasDiscount())
|
||||||
|
<span class="old-price">
|
||||||
|
{{$product->oldPrice()}}
|
||||||
|
</span>
|
||||||
|
@endif
|
||||||
|
<span class="price">
|
||||||
|
{{$product->getPrice()}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="p-2">
|
||||||
|
<a href="{{ route('client.product-card-toggle',$product->slug) }}"
|
||||||
|
class="btn btn-outline-primary w-100 add-to-card">
|
||||||
|
<i class="ri-shopping-bag-3-line"></i>
|
||||||
|
{{__("Add to card")}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@endforeach
|
||||||
|
</div>
|
||||||
|
<div class="p-4 text-center mt-2">
|
||||||
|
<a href="{{route('client.products')}}" class="btn btn-secondary">
|
||||||
|
{{__("All products")}}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "LatestProducts",
|
||||||
|
"version": "1.0",
|
||||||
|
"author": "xStack",
|
||||||
|
"email": "xshop@xstack.ir",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
|
"url": "https:\/\/xstack.ir",
|
||||||
|
"author_url": "https:\/\/4xmen.ir",
|
||||||
|
"packages": []
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Resources\Views\Segments;
|
||||||
|
|
||||||
|
use App\Models\Part;
|
||||||
|
|
||||||
|
class LatestProducts
|
||||||
|
{
|
||||||
|
public static function onAdd(Part $part = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onRemove(Part $part = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
public static function onMount(Part $part = null)
|
||||||
|
{
|
||||||
|
return $part;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,90 @@
|
|||||||
|
.LatestProducts {
|
||||||
|
h1{
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
font-size: 27px;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
.product-item {
|
||||||
|
border: 1px solid silver;
|
||||||
|
box-shadow: var(--xshop-shadow);
|
||||||
|
border-radius: var(--xshop-border-radius);
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
img{
|
||||||
|
height: 250px;
|
||||||
|
width: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
margin-top: 1rem;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: 300;
|
||||||
|
color: var(--xshop-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.prices {
|
||||||
|
display: grid;
|
||||||
|
grid-auto-columns: minmax(0, 1fr);
|
||||||
|
grid-auto-flow: column;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
span {
|
||||||
|
display: block;
|
||||||
|
padding: .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.old-price{
|
||||||
|
text-decoration: red line-through;
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fav-btn, .compare-btn {
|
||||||
|
position: absolute;
|
||||||
|
inset-inline-start: -12%;
|
||||||
|
top: 3%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
background: #ffffff55;
|
||||||
|
font-size: 25px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 50%;
|
||||||
|
z-index: 4;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: .4s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: var(--xshop-primary);
|
||||||
|
color: var(--xshop-diff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.fav-btn {
|
||||||
|
top: calc(3% + 50px);
|
||||||
|
|
||||||
|
&[data-is-fav="-1"]{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
&[data-is-fav="1"]{
|
||||||
|
.ri-heart-line{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&[data-is-fav="0"]{
|
||||||
|
.ri-heart-fill{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
.fav-btn, .compare-btn {
|
||||||
|
inset-inline-start: 3%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
Loading…
Reference in New Issue