@extends('AdminPanel.layouts.master') @section('content') @if($errors->any())
الرجاء تصحيح الأخطاء التالية:
@endif

{{$title}}

@forelse($opportunities as $index => $opportunity) @empty @endforelse
# العنوان المرحلة القيمة تاريخ الإغلاق المتوقع المسؤول عدد المتابعات الإجراءات
{{ $index + 1 }} {{ $opportunity->title }} @switch($opportunity->stage) @case('new') جديدة @break @case('under_followup') تحت المتابعة @break @case('proposal_sent') عرض مرسل @break @case('negotiation') تفاوض @break @case('won') ناجحة @break @case('lost') فاشلة @break @default {{ $opportunity->stage }} @endswitch {{ $opportunity->value ? number_format($opportunity->value, 2) : '-' }} {{ $opportunity->expected_close_date ?? '-' }} {{ $opportunity->assignedTo?->name ?? 'غير محدد' }} {{ $opportunity->client_follow_ups_count }} $client->id , "opportunity_id"=> $opportunity->id , ]) }}" class="btn btn-sm btn-primary"> عرض المتابعات
لا توجد فرص مرتبطة بهذا العميل.
{{ $opportunities->links('vendor.pagination.default') }}
@stop @section('page_buttons') @if(userCan('followups_create')) {{__('common.CreateNewFollowUp')}} @include('AdminPanel.opportunities.create') @endif {{__('common.search')}} @stop