@extends('layouts.buyer') @section('style') @endsection @section('content')
@foreach (App\Models\Product::all() as $product)
@if ($product->category === 'makanan')

Makanan

{{ $product->unit }}

@elseif ($product->category === 'minuman')

Minuman

{{ $product->unit }}

@elseif ($product->category === 'pembersih')

Pembersih

{{ $product->unit }}

@else

Lainnya

{{ $product->unit }}

@endif

{{ $product->name }}

{{ $product->priceFormatted() }}

@endforeach
{{--
--}} @endsection @section('script') @endsection