@extends('admin.layouts.app') @section('title', $customer ? 'Edit Customer' : 'Add Customer') @push('styles') @endpush @section('content') @php $isEdit = $customer !== null; $pkgAmount = (float) ($customer?->PkgAmount ?? 0); $paidAmount = (float) ($customer?->PaidAmount ?? 0); $balAmount = $pkgAmount - $paidAmount; @endphp