@extends('layouts.app') @section('title', '영업파트너 고객관리') @section('content')

영업파트너 고객관리

전체 영업파트너의 고객 현황을 관리합니다 (관리자 전용)

전체 고객
{{ number_format($stats['total']) }}건
영업 진행중
{{ number_format($stats['active']) }}건
영업권 만료
{{ number_format($stats['expired']) }}건
계약 완료
{{ number_format($stats['converted']) }}건
@if(request('status')) @endif
@forelse($prospects as $prospect) @empty @endforelse
업체명 담당 파트너 담당 매니저 영업 진행률 매니저 진행률 개발 상태 상태 등록일 관리
{{ $prospect->company_name }}
{{ $prospect->business_number }}
@if($prospect->registeredBy) {{ $prospect->registeredBy->name }} @else - @endif @if($prospect->manager_user) {{ $prospect->manager_user->name }} @else 미지정 @endif
{{ $prospect->sales_progress }}%
{{ $prospect->manager_progress }}%
{{ $prospect->hq_status_label }} {{ $prospect->status_label }} {{ $prospect->created_at->format('Y-m-d') }}
등록된 고객이 없습니다.
@if($prospects->hasPages())
{{ $prospects->withQueryString()->links() }}
@endif
@endsection @push('scripts') @endpush