@extends('layouts.app') @section('title', 'عروض الأسعار للعملاء') @section('content')
إدارة وتتبع جميع عروض الأسعار المقدمة للعملاء
{{ session('success') }}
{{ session('error') }}
| # | رقم العرض | العميل | المبلغ الإجمالي | تاريخ الصلاحية | الحالة | الإجراءات |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $quotation->quotation_number }}
|
{{ $quotation->customer->name ?? 'N/A' }} | {{ number_format($quotation->total_amount, 2) }} | {{ $quotation->validity_date ? $quotation->validity_date->format('Y-m-d') : 'N/A' }} | @if($quotation->status == 'draft') مسودة @elseif($quotation->status == 'sent') مرسل للعميل @elseif($quotation->status == 'accepted') مقبول @elseif($quotation->status == 'rejected') مرفوض @elseif($quotation->status == 'converted_to_so') محول لأمر بيع @else {{ $quotation->status }} @endif | |
|
لا توجد عروض أسعار حالياً ابدأ بإنشاء عرض سعر جديد |
||||||