@extends('layouts.app') @section('extra_css') @endsection @section('content')

Daftar Produk

Daftar Produk

Semua @foreach ($categories as $cat) {{ $cat->name }} @endforeach
@foreach ($products as $p)
{{ $p->name }} @if (($p->availability ?? '') == 'Pre-Order')
PRE-ORDER
@endif

{{ $p->name }}

@if ($p->price_to > $p->price) Harga di antara
Rp {{ number_format($p->price, 0, ',', '.') }} - Rp {{ number_format($p->price_to, 0, ',', '.') }} @else Rp {{ number_format($p->price, 0, ',', '.') }} @endif

@endforeach
@if (count($products) === 0)

Tidak ada koleksi dalam kategori ini.

@endif
@endsection @section('extra_js') @endsection