@extends('layouts.app') @section('title', $product->name . ' - Shop Bibit Cabai Bondowoso') @section('styles') @endsection @section('content')
{{-- Breadcrumb --}}
{{-- Gambar Produk --}}
{{ $product->name }}
{{-- Info Produk --}}

{{ $product->name }}

@if($product->category) {{ $product->category }} @endif
Rp {{ number_format($product->price, 0, ',', '.') }}
{{-- Status Stok --}}
Stok: {{ number_format($product->stock) }} @if($product->stock > 0) Tersedia @else Stok Habis @endif
{{-- Total Terjual --}} @if(isset($product->sold) && $product->sold > 0)

Terjual: {{ number_format($product->sold) }} bibit

@endif {{-- Aksi Beli --}} @if($product->stock > 0)
@else @endif {{-- Deskripsi --}} @if($product->description)
Deskripsi Produk

{{ $product->description }}

@endif
{{-- Tombol Kembali --}}
Kembali ke Beranda
@endsection