Kết quả tìm kiếm cho: {{ $keyword }}
{{-- Danh sách sản phẩm --}} @if ($products->isEmpty())Không tìm thấy sản phẩm nào phù hợp.
@else
@foreach ($products as $product)
@endforeach
@endif
@endsection
@section('footer')
@endsection
{{ $product->product_name }}
@if ($product->is_sale && $product->sale_price < $product->price)
{{ number_format($product->sale_price) }} đ
{{ number_format($product->price) }}vnđ
-{{ round((($product->price - $product->sale_price) / $product->price) * 100) }}%
@else
{{ number_format($product->price) }} đ
@endif