@extends('layouts.client') @section('title') {{$title}} @endsection @section('sidebar') {{-- @parent --}}

Home Sidebar

@endsection @section('content-clients') {{-- âm thanh phát khi truy cập trang --}}
@if(!empty($promotionNew)) [{{$promotionNew->ma_khuyen_mai}}] - {{ $promotionNew->ten_khuyen_mai }} từ {{ \Carbon\Carbon::parse($promotionNew->ngay_bat_dau)->format('d/m/Y H:i:s') }} đến {{ \Carbon\Carbon::parse($promotionNew->ngay_ket_thuc)->format('d/m/Y H:i:s') }} @endif
@include('clients.blocks.categories')
@if(!empty($posts)) @foreach($posts as $post)
Image {{$loop->index + 1}}
{{$post->tieu_de}}
@endforeach @endif
{{-- danh sách sản phẩm dưới bài viết --}}
@if(!empty($allProduct)) @foreach($allProduct as $item) @php $ratings = array_filter(explode('|', $item->ratings), 'is_numeric'); $averageRating = $ratings ? array_sum($ratings) / count($ratings) : 0; $fullStars = floor($averageRating); $halfStar = $averageRating - $fullStars >= 0.5; $originalPrice = $item->don_gia; $promotion = \App\Models\Admin\ProductPromotion::join('khuyenmai', 'khuyenmai.id', '=', 'sanpham_khuyenmai.khuyenmai_id') ->where('sanpham_khuyenmai.product_id', $item->maSP) ->where('khuyenmai.ngay_bat_dau', '<=', now()) ->where('khuyenmai.ngay_ket_thuc', '>=', now()) ->where('khuyenmai.trang_thai',0) ->orderBy('khuyenmai.ngay_bat_dau', 'desc') ->first(); $price = $promotion ? ($promotion->hinh_thuc_giam_gia == 0 ? max(0, $originalPrice - $promotion->gia_tri_khuyen_mai) : max(0, $originalPrice * (1 - $promotion->gia_tri_khuyen_mai / 100))) : $originalPrice; $discountPercent = $promotion ? (($originalPrice - $price) / $originalPrice) * 100 : 0; @endphp @endforeach @endif
{{-- SỰ KIỆN --}} {{-- SẢN PHẨM NỔI BẬT --}}
{{-- css blobs animation --}}

Sắm Ngay Sản Phẩm Ưa Thích!

Chào mừng bạn đến với cửa hàng Gia Dụng Văn Hậu. Đến với cửa hàng, chúng tôi sẽ đem lại cho bạn những sản phẩm chất lượng, phong phú,.... Với tiêu chí Chất lượng đặt lên hàng đầu. Xem sản phẩm
{{-- DANH MỤC HOT --}}

DANH MỤC HOT TẠI SHOP

@if(!empty($listCategoriesHot)) @foreach($listCategoriesHot as $item)
{{$item->ten_danh_muc}}
@endforeach @endif
{{-- DANH SÁCH SẢN PHẨM CỦA DANH MỤC ĐÓ (GIỚI HẠN 5 DANH MỤC ĐẦU) --}} @if(!empty($ProductCategory)) @foreach($ProductCategory as $itemDm)
Sản phẩm {{$itemDm->ten_danh_muc}}
Xem tất cả sản phẩm
@if(!empty($itemDm->products))
@foreach($itemDm->products as $itemProductDM) @php // Giá gốc của sản phẩm $originalPrice = $itemProductDM->don_gia; // Lấy khuyến mãi của sản phẩm, nếu có $promotion = \App\Models\Admin\ProductPromotion::join('khuyenmai', 'khuyenmai.id', '=', 'sanpham_khuyenmai.khuyenmai_id') ->where('sanpham_khuyenmai.product_id', $itemProductDM->maSP) ->where('khuyenmai.ngay_bat_dau', '<=', now()) ->where('khuyenmai.ngay_ket_thuc', '>=', now()) ->where('khuyenmai.trang_thai',0) ->orderBy('khuyenmai.ngay_bat_dau', 'desc') ->select('khuyenmai.*') ->first(); // Tính giá khuyến mãi $price = $originalPrice; // Mặc định là giá gốc if ($promotion) { if ($promotion->hinh_thuc_giam_gia == 0) { // Giảm theo số tiền $price = max(0, $originalPrice - $promotion->gia_tri_khuyen_mai); } elseif ($promotion->hinh_thuc_giam_gia == 1) { // Giảm theo phần trăm $price = max(0, $originalPrice * (1 - $promotion->gia_tri_khuyen_mai / 100)); } } // Tính phần trăm giảm giá $discountPercent = 0; if ($itemProductDM->don_gia > 0 && $promotion) { $discountPercent = (($itemProductDM->don_gia - $price) / $itemProductDM->don_gia) * 100; } @endphp @endforeach
@endif
@endforeach @endif {{-- Đăng ký nhận tin khuyến mãi --}} {{-- SẢN PHẨM ĐÃ XEM --}} @if(!empty($viewedProductDetails) && count($viewedProductDetails) >0 ) @endif {{-- VIDEO --}}
{{-- DANH SÁCH NHÃN HÀNG --}}
THƯƠNG HIỆU HỢP TÁC
@if(!empty($brand)) @foreach($brand as $item) @endforeach @endif
{{--
--}}
{{-- Khuyến mãi --}} @if(!empty($listPromotion) && count($listPromotion) > 0)

Khuyến Mãi Đơn Hàng Hôm Nay

@foreach($listPromotion as $item)
{{$item->ma_khuyen_mai}}

Giảm 50% tới đa 10K đơn từ {{format_price($item->gia_tri_toi_thieu)}}

HSD: {{$item->ngay_ket_thuc}}

@endforeach
@endif @endsection {{-- js --}} @section('js') @endsection