@extends('admin.layouts.app') @section('title', 'Product Report') @section('content')

Best Selling Products

@foreach($bestSelling as $b) @endforeach
ProductQty SoldRevenue
{{ $b->product->name ?? '—' }}{{ $b->total_qty }}{{ $siteSettings['currency'] }}{{ number_format($b->total_revenue,2) }}

Low Stock

@foreach($lowStock as $p)
{{ $p->name }} — {{ $p->stock_quantity }}
@endforeach

Out of Stock

@foreach($outOfStock as $p)
{{ $p->name }} — 0
@endforeach
@endsection