@extends('dashboard.layouts.app') @section('title', __('dashboard.Product Sales Statistics')) @section('page_heading', __('dashboard.Product Sales Statistics')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Product Sales Statistics') }}

@csrf
{{ __('dashboard.Reset') }}
@foreach ($productSales as $productSale) @endforeach
{{ __('dashboard.Product Name') }} {{ __('dashboard.SKU') }} {{ __('dashboard.Category') }} {{ __('dashboard.Quantity Sold') }} {{ __('dashboard.Total Sales Value') }}
{{ $productSale['name'] }} {{ $productSale['sku'] }} {{ $productSale['category'] }} {{ $productSale['quantity'] }} {{ number_format($productSale['price'], 2) }}
@section('scripts') @endsection
@endsection