@extends('layouts.app') @section('title', 'Laporan Per Produk') @section('page-title', 'Laporan Per Produk') @section('page-actions') @endsection @section('content')
| # | Nama Produk | Unit Terjual | Total Revenue | % Revenue | |
|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $p->nama_produk }} | {{ number_format($p->total_qty) }} | Rp {{ number_format($p->total_revenue, 0, ',', '.') }} |
{{ $pct }}%
|