@extends('admin.layout.index') {{-- =========== meta Title =================== --}} @section('title') حق العمل نمایندگان @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection {{-- =========== My JavaScript =================== --}} @section('script') @endsection @section('content')

خلاصه عملکرد نمایندگان در

این صفحه یک پیش‌نمایش از عملکرد نمایندگان در ماه {{ $jalaliMonths[$selectedMonth] }} سال {{ $selectedYear }} را نشان می‌دهد.
حق العمل نهایی در پایان هر ماه محاسبه و قطعی می‌شود.

@if(empty($sellersOverview))
در بازه انتخاب شده، هیچ نماینده‌ای فروشی ثبت نکرده است.
@else @foreach ($sellersOverview as $seller) @endforeach
نام نماینده مجموع فروش (ریال) درصد حق العمل موثر حق العمل تخمینی (ریال)
{{ $seller->name }} {{ number_format($seller->total_sales) }} {{ $seller->commission_percentage_used }}% {{ number_format($seller->estimated_commission) }}
@endif
@endsection