@extends('layouts.master') @section('css') @endsection @section('title') {{ __('report.Best selling products') }} @endsection @section('page-header') @endsection @section('content') @if (count($errors) > 0) @endif
{{ __('home.advanced_search_filters') ?? 'فلترة بيانات التقرير' }}

@csrf
@if (isset($bestselling))
@php $i = 0; @endphp
@foreach ($bestselling as $product) @php if ($i == 0) { $i++; } @endphp @endforeach
{{ __('home.productNo') }} {{ __('home.productname') }} {{ __('users.branch') }} {{ __('report.Number of pieces sold') }}
{{ $product['productcode'] }} {{ $product['productname'] }} {{ $product['branch'] }} {{ $product['numberofsall'] }}
@endif
@endsection @section('js') @endsection