@extends('layouts.app') @section('title', $product->name) @section('og_title', $product->name . ' — ' . setting('brand_name', 'yClothes')) @section('og_description', Str::limit(strip_tags($product->description), 160)) @section('og_image', $product->image_url) @section('content')
{{-- Gallery --}}
{{-- Info --}}

{{ $product->category->name }}

{{ $product->name }}

{{ number_format($product->views) }} dilihat
Rp {{ number_format($product->final_price, 0, ',', '.') }} @if($product->sale_price) Rp {{ number_format($product->price, 0, ',', '.') }} -{{ $product->discount_percentage }}% @endif

{{ $product->description }}

@csrf @if($product->sizes)
@foreach($product->sizes as $size) @endforeach
@endif @if($product->colors)
@foreach($product->colors as $color) @endforeach
@endif
1
Tanya WA
{{-- Share --}}
Bagikan: WhatsApp Tersalin!
{{-- Tabs --}}

{{ $product->description }}

@if($product->sizes)

Tersedia ukuran: {{ implode(', ', $product->sizes) }}

@else

Ukuran tidak berlaku untuk produk ini.

@endif
{{-- Related Products --}} @if($relatedProducts->count())

Produk Serupa

@foreach($relatedProducts as $product)
@include('products._card', ['product' => $product])
@endforeach
@endif
@endsection @push('scripts') @endpush