@extends('layouts.app') @section('content')

Initiate Transfer

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
Booking #: {{ $booking->booking_number }}
Customer: {{ $booking->customer->name }} ({{ $booking->customer->cnic }})
Unit: {{ $booking->unit->unit_number }}
Total Paid: {{ number_format($totalPaid, 2) }}
Remaining: {{ number_format($remaining, 2) }}
@if($newCustomer)
New Customer: {{ $newCustomer->name }} ({{ $newCustomer->cnic }})
@endif
@csrf
@endsection