@extends('layouts.app') @section('title', $product->meta_title ?? $product->name . ' - ' . setting('store_name')) @section('meta_description', $product->meta_description) @push('head') @endpush @section('content')
@if($product->images->isEmpty()) Placeholder @endif
@if($product->price_was) Sale @endif @if($product->is_featured) Featured @endif
@if($product->images->count() > 1)
@foreach($product->images as $img) @endforeach
@endif

{{ $product->name }}

@if($product->price_was) Rp {{ number_format($product->price_was, 0, ',', '.') }} @endif
@if($product->variants->isNotEmpty())

Pilih Varian

@foreach($product->variants as $variant) @endforeach
@endif

Jumlah Pesanan

Tersedia unit

Berat

{{ $product->weight }} gram

Garansi

Original

Informasi Produk

{!! $product->description !!}
@if($relatedProducts->isNotEmpty())

Recommendations

Produk Terkait

Lihat Lainnya
@foreach($relatedProducts as $related)
{{ $related->name }}

{{ $related->name }}

Rp {{ number_format($related->price, 0, ',', '.') }}

@endforeach
@endif
@endsection @push('scripts') @endpush