@if($useTwoStepInput)
{{-- 2段階入力モード: 入金情報セクション --}}
@include('user.payment-receipt-new.partials.entry-receipt-types')
{{-- 振分セクション: 2件以上の場合はヘッダ部のボタンでモーダル表示(1件の場合は振分不要) --}}
{{-- フォーム送信用hiddenフィールド --}}
{{-- 入金情報(receipt_types)のhiddenフィールド --}}
@foreach($receiptTypes as $index => $row)
@endforeach
{{-- 振分情報(allocations)のhiddenフィールド --}}
@foreach($allocations as $index => $row)
@endforeach
@else
{{-- 従来モード: 内訳テーブル --}}
@include('user.payment-receipt-new.partials.entry-detail')
@endif