@extends('layouts.app') @section('content')
{{ __('Product') }} | {{ __('Category') }} | {{ __('Quantity Sold') }} | {{ __('Total Sales') }} |
---|---|---|---|
{{ $product->product->name }} | {{ $product->product->category->name }} | {{ $product->total_quantity }} | {{ number_format($product->total_sales, 2) }} |
{{ __('No product data available for the selected period') }} | |||
{{ __('Total') }} | {{ $products->sum('total_quantity') }} | {{ number_format($products->sum('total_sales'), 2) }} |