@extends('layouts.master') @section('css') @section('title') {{ __('report.Best selling products') }}@stop @endsection @section('page-header')
@endsection @section('content') @if (count($errors) > 0)
خطا
@endif
{{ csrf_field() }}

{{ __('users.branch') }}

@if (isset($bestselling))
@if ($bestselling != null)
@endif
@foreach ($bestselling as $product) @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