@extends('layouts.admin') @section('title', ($patientProfile->user->name ?? 'Patient') . ' — Claim Preview') @section('content')
← Billing detail

Stedi claim preview

{{ $patientProfile->user->name ?? 'Patient' }} · {{ now()->format('F Y') }}

Back @can('submitClaim', [App\Models\BillingPeriod::class, $patientProfile])
@csrf
@endcan

Claim version

{{ $preview['claim_version'] }}

Idempotency key

{{ $preview['idempotency_key'] }}

Usage

{{ $preview['payload']['usageIndicator'] ?? '—' }}

Payload hash

{{ $preview['payload_hash'] }}

Patient control number

{{ $preview['payload']['claimInformation']['patientControlNumber'] ?? '—' }}

Payer

{{ $preview['payload']['receiver']['organizationName'] ?? $preview['payload']['tradingPartnerServiceId'] ?? '—' }}

Charge amount

${{ $preview['payload']['claimInformation']['claimChargeAmount'] ?? '0.00' }}

Generated 837P JSON

{{ $payloadJson }}
@endsection