@php
$products = [
[
'id' => 1,
'name' => 'Kopi Susu Gula Aren',
'price' => 18000,
'img' => 'https://images.unsplash.com/photo-1541167760496-162955ed8a9f?w=200&q=80',
'cat' => 'Minuman',
],
[
'id' => 2,
'name' => 'Croissant Almond',
'price' => 25000,
'img' => 'https://images.unsplash.com/photo-1555507036-ab1f4038808a?w=200&q=80',
'cat' => 'Makanan',
],
[
'id' => 3,
'name' => 'Earl Grey Tea',
'price' => 15000,
'img' => 'https://images.unsplash.com/photo-1594631252845-29fc458639a8?w=200&q=80',
'cat' => 'Minuman',
],
[
'id' => 4,
'name' => 'Spaghetti Carbonara',
'price' => 45000,
'img' => 'https://images.unsplash.com/photo-1612459284970-e8f027596582?w=200&q=80',
'cat' => 'Makanan',
],
[
'id' => 5,
'name' => 'French Fries',
'price' => 20000,
'img' => 'https://images.unsplash.com/photo-1630384066242-17a17833f347?w=200&q=80',
'cat' => 'Snack',
],
[
'id' => 6,
'name' => 'Cheesecake Slice',
'price' => 32000,
'img' => 'https://images.unsplash.com/photo-1533134242443-d4fd215305ad?w=200&q=80',
'cat' => 'Makanan',
],
];
@endphp
@foreach ($products as $p)
{{-- Bagian Gambar: Diperbaiki --}}
{{ $p['cat'] }}
{{ $p['name'] }}
Rp{{ number_format($p['price'], 0, ',', '.') }}
@endforeach