@extends('layouts.main.master') @section('title') {{$product->name}} @endsection @section('description') {{languageName($product->description)}} @endsection @section('image') @php $img = json_decode($product->images); @endphp {{url(''.$img[0])}} @endsection @section('css') @endsection @section('js') @endsection @section('content')
@if ($product->price > 0) @if ($product->status_variant == 1)
{{number_format($product->price)}}₫ {{get_price_variant($product->id)}}₫
@else
{{number_format($product->price)}}₫ {{number_format($product->discount)}}₫
@endif @else
{{number_format($product->price)}}₫ Liên Hệ
@endif

{{languageName($product->description)}}

Liên hệ đặt hàng
{!!languageName($product->content)!!}

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

@foreach ($productlq as $item)
{{$item->name}}
@if ($item->price > 0) @if ($item->status_variant == 1) {{get_price_variant($item->id)}}₫ {{number_format($item->price)}}₫ @else {{number_format($item->discount)}}₫ {{number_format($item->price)}}₫ @endif @else Liên Hệ @endif
@endforeach
@endsection