@extends('portal.layouts.app') @section('title', 'BIPL Operations') @section('subtitle', 'Daily leads, call back confirmation and contribution deductions') @section('actions') Upload a file @endsection @section('content')
  1. 1

    Download the lead extract

    Take the day's CSV and load it into the bank system.

  2. 2

    Run the CBC calls

    Confirm each customer's consent by telephone.

  3. 3

    Upload the CBC result file

    Confirmed leads move to awaiting deduction.

  4. 4

    Upload the successful deduction file

    Each successful row activates the policy.

Go to file uploads
@if ($awaitingCbc->isEmpty())

Nothing is waiting on a CBC call.

@else
@foreach ($awaitingCbc as $lead) @endforeach
Reference Customer Product Contribution Sent
{{ $lead->subscription_no }} {{ $lead->customer->full_name }} {{ $lead->customer->maskedMobile() }} {{ $lead->product->code }} {{ $lead->plan?->code }} {{ number_format((float) $lead->contribution_amount) }} {{ $lead->exported_at?->diffForHumans(short: true) }}
@endif
{{-- A named slot, not an :actions attribute: attribute values are escaped, so passing markup that way prints it as text. --}} View all @include('portal.partials.batch-list', ['batches' => $extracts]) @if ($failures->isEmpty())

Every uploaded row has been applied.

@else @endif
@endsection