@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Sales Of Product")}}

@endsection @section("content") @include("includes.dialog") @include("admin.report.parts.filter", ["url" => route("admin.report.sales_by_product")])
@foreach($products as $product) @endforeach
{{__("Name")}} {{__("Image")}} {{__("Price")}} {{__("Quantity Per Branch")}} {{__("Quantity")}} {{__("Total")}}
{{$product['name']}} {{$product['quantity']}} {{$product['total']}} {{__("SR")}}
{{__("Total")}} {{ $total }} {{__("SR")}}
@endsection