{{ __('admin.contract_pricing.title') }}
{{ $project->project_name }}{{ __('admin.contract_pricing.configure') }}
{{ app()->getLocale() === 'ar' ? 'معاينة التسعير' : 'Pricing Preview' }}
| {{ __('admin.contract_pricing.fields.base_price') }} | {{ number_format($pricing?->base_price ?? 0, 2) }} |
| {{ __('admin.contract_pricing.fields.commission_rate') }} ({{ $pricing->commission_rate }}%) | {{ number_format($pricing->commission_amount ?? 0, 2) }} |
| {{ __('admin.contract_pricing.fields.additional_costs') }} | {{ number_format($pricing?->additional_costs ?? 0, 2) }} |
| {{ app()->getLocale() === 'ar' ? 'المجموع الفرعي' : 'Subtotal' }} | {{ number_format($pricing?->subtotal ?? 0, 2) }} |
| {{ __('admin.contract_pricing.fields.discount') }} | - {{ number_format($pricing?->discount ?? 0, 2) }} |
| {{ __('admin.contract_pricing.fields.total_price') }} | {{ number_format($pricing?->total_price ?? 0, 2) }} |
{{ app()->getLocale() === 'ar' ? 'أنواع التسعير' : 'Pricing Types' }}
{{ app()->getLocale() === 'ar' ? 'مبلغ ثابت متفق عليه مسبقاً. الإجمالي = السعر الأساسي + تكاليف إضافية - خصم.' : 'A fixed pre-agreed amount. Total = Base Price + Additional Costs - Discount.' }}
{{ app()->getLocale() === 'ar' ? 'نسبة عمولة ثابتة على قيمة المشروع. الإجمالي = السعر الأساسي + (السعر × نسبة العمولة) + تكاليف إضافية - خصم.' : 'A fixed commission percentage on the project value. Total = Base Price + (Base × Commission%) + Additional Costs - Discount.' }}