@extends('layouts.app') @section('title', $product->name) @section('content')
{{ $product->name }}
{{ ucfirst($product->type) }} @if ($product->is_halal) Halal @endif

{{ $product->name }}

Berat: {{ $product->weight }}kg Status: {{ ucfirst($product->status) }}
Rp {{ number_format($product->total_price, 0, ',', '.') }}
Rp {{ number_format($product->price_per_kg, 0, ',', '.') }}/kg
@if ($product->stock_quantity > 0)
Tersedia ({{ $product->stock_quantity }} unit)
@else
Stok Habis
@endif @if ($product->stock_quantity <= 5 && $product->stock_quantity > 0) (Stok Terbatas) @endif

Deskripsi Produk

{{ $product->description }}

@if ($product->storage_instructions)

Petunjuk Penyimpanan

{{ $product->storage_instructions }}

@endif
@csrf @if ($product->stock_quantity > 0)
Maks: {{ $product->stock_quantity }}
@else @endif
@csrf
Produk Segar
Pengiriman Cepat
Kualitas Terjamin
Pembayaran Aman
@endsection