@extends('layouts.app') @section('title', $product->name . ' - XING NEW') @section('content')
Trang chủ / Sản phẩm / {{ $product->name }}
@if($product->image) {{ $product->name }} @else
@endif
@if($product->images && count($product->images) > 0)
@foreach($product->images as $img)
@endforeach
@endif
{{ $product->category?->name }}

{{ $product->name }}

@php $avg = $product->reviews->avg('rating') ?: 5; @endphp @for($i = 1; $i <= 5; $i++) @endfor
{{ $product->reviews->count() }} đánh giá
@if($product->contact_for_price) Liên hệ @else {{ number_format($product->price, 0, ',', '.') }}đ @if($product->old_price) {{ number_format($product->old_price, 0, ',', '.') }}đ @endif @endif
@if($product->sku)
SKU: {{ $product->sku }}
@endif

{{ $product->short_description }}

@csrf @if($groupedAttributes->count() > 0)
@foreach($groupedAttributes as $attrName => $values)
@foreach($values as $val) @endforeach
@endforeach
@endif @if(!$product->contact_for_price)
@endif
@if($product->contact_for_price) Liên hệ qua Zalo Gọi hotline @else @endif
Giao hàng toàn quốc
Sản phẩm chính hãng

Mô tả chi tiết sản phẩm

{!! $product->description !!}

Đánh giá từ khách hàng

@include('partials.reviews')
@if($relatedProducts->count() > 0)

Sản phẩm tương tự

@foreach($relatedProducts as $rel)

{{ $rel->name }}

@if($rel->contact_for_price) Liên hệ @else {{ number_format($rel->price, 0, ',', '.') }}đ @endif
@endforeach
@endif
@push('scripts') @endpush @endsection