@section("title", "BizMan | Sales Pipeline")

{{ __('Sales Pipeline') }}

{{ date('l, d M Y') }}

Sales Pipeline

Kelola deal dan prospek penjualan

Tambah Deal
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

Lead

{{ $totals['lead']['count'] }} deals • Rp {{ number_format($totals['lead']['value'], 0, ',', '.') }}

@forelse ($pipeline['lead'] as $deal)

{{ $deal->title }}

{{ $deal->client_name }}
{{ $deal->formatted_value }}
@if($deal->category)
{{ $deal->category }}
@endif
@csrf @method('PATCH')
@csrf @method('PATCH')
@if($deal->stage !== 'proposal')
@csrf @method('PATCH')
@endif @if($deal->stage !== 'negotiation')
@csrf @method('PATCH')
@endif
@empty

No deals in this stage

@endforelse

Proposal

{{ $totals['proposal']['count'] }} deals • Rp {{ number_format($totals['proposal']['value'], 0, ',', '.') }}

@forelse ($pipeline['proposal'] as $deal)

{{ $deal->title }}

{{ $deal->client_name }}
{{ $deal->formatted_value }}
@if($deal->category)
{{ $deal->category }}
@endif
@csrf @method('PATCH')
@csrf @method('PATCH')
@if($deal->stage !== 'lead')
@csrf @method('PATCH')
@endif @if($deal->stage !== 'negotiation')
@csrf @method('PATCH')
@endif
@empty

No deals in this stage

@endforelse

Negotiation

{{ $totals['negotiation']['count'] }} deals • Rp {{ number_format($totals['negotiation']['value'], 0, ',', '.') }}

@forelse ($pipeline['negotiation'] as $deal)

{{ $deal->title }}

{{ $deal->client_name }}
{{ $deal->formatted_value }}
@if($deal->category)
{{ $deal->category }}
@endif
@csrf @method('PATCH')
@csrf @method('PATCH')
@if($deal->stage !== 'lead')
@csrf @method('PATCH')
@endif @if($deal->stage !== 'proposal')
@csrf @method('PATCH')
@endif
@empty

No deals in this stage

@endforelse
@push('scripts') @endpush