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

📦 Data Produk

+ Tambah Produk
@csrf
{{-- 🔍 SEARCH --}}
@if(request('search')) Reset @endif
@if(session('success'))

{{ session('success') }}

@endif @forelse($products as $p) @php $purchase = $p->purchase_price ?? 0; $sell = $p->price ?? 0; $profit = $sell - $purchase; @endphp @empty @endforelse
Nama Barcode Harga Beli Harga Jual Profit Stok Aksi
{{ $p->name }} {{ $p->barcode }} Rp {{ number_format($purchase, 0, ',', '.') }} Rp {{ number_format($sell, 0, ',', '.') }} Rp {{ number_format($profit, 0, ',', '.') }} {{ $p->stock }} Edit
{{-- @csrf @method('DELETE') --}}
Produk tidak ditemukan
@endsection