@extends('layouts.app') @section('title', $customer->name . ' — বিস্তারিত') @section('page-title', 'গ্রাহকের বিস্তারিত') @section('content')
{{-- Left: Profile Card --}}
{{ $customer->name }}
@if($customer->company_name) {{ $customer->company_name }} @endif
{{ $customer->type_label }} {{ $customer->status_label }}
{{-- Actions --}}
{{-- Right: Financial & Notes --}}
{{-- Financial Summary --}}
সিলিন্ডার ডিপোজিট
৳{{ number_format($customer->deposit_amount, 2) }}
{{-- Adjust Deposit --}}
@csrf @method('PATCH')
বকেয়া ব্যালেন্স
৳{{ number_format($customer->due_balance, 2) }}
{{-- Adjust Due --}}
@csrf @method('PATCH')
{{-- Customer Info Table --}}
বিস্তারিত তথ্য
@if($customer->notes) @endif
নিবন্ধনের তারিখ{{ $customer->created_at->format('d M Y') }}
সর্বশেষ আপডেট{{ $customer->updated_at->format('d M Y') }}
নোট{{ $customer->notes }}
@endsection