@extends('layouts.app') @section('head') Product Page @endsection @section('content')

Produk Kami

Pilih kue favorit Anda dan tambahkan ke keranjang

{{ count($products) }} Produk Tersedia

Produk Kami

Pilih kue favorit Anda dan tambahkan ke keranjang

@forelse ($products as $product)
{{ $product->name }}
{{ $product->name }}

{{ $product->description }}

{{ $product->formatted_price }}
Stok: {{ $product->stock }}
@if($product->stock > 0 && $product->is_active)
@csrf
@else @endif
@empty
Tidak ada produk tersedia saat ini.
@endforelse
@if (count($products) > 12)
@endif
@if (session('success'))
@endif @if (session('error'))
@endif
Loading...
@endsection @section('styles') @endsection @section('scripts') @endsection