@extends('layouts.app') @section('title', 'Inactive Client Details') @section('page-title', 'Inactive Client Details') @section('content')
Inactive Client Details
Back to List
@csrf
Personal Information
Full Name:
{{ $inactiveClient->full_name }}
Mobile Number:
{{ $inactiveClient->mobile_number }}
Email:
{{ $inactiveClient->email_address ?: 'N/A' }}
Gender:
{{ ucfirst($inactiveClient->gender ?: 'N/A') }}
Date of Birth:
{{ $inactiveClient->date_of_birth ? $inactiveClient->date_of_birth->format('d/m/Y') : 'N/A' }}
Father Name:
{{ $inactiveClient->father_name ?: 'N/A' }}
Mother Name:
{{ $inactiveClient->mother_name ?: 'N/A' }}
Occupation:
{{ $inactiveClient->occupation ?: 'N/A' }}
NID/Birth Cert:
{{ $inactiveClient->nid_birth_certificate_no ?: 'N/A' }}
Registration Form:
{{ $inactiveClient->registration_form_no ?: 'N/A' }}
Contact Information
Address:
{{ $inactiveClient->address ?: 'N/A' }}
Present Address:
{{ $inactiveClient->present_address ?: 'N/A' }}
Permanent Address:
{{ $inactiveClient->permanent_address ?: 'N/A' }}
District:
{{ $inactiveClient->district ?: 'N/A' }}
Upazila/Thana:
{{ $inactiveClient->upazila_thana ?: 'N/A' }}
Road Number:
{{ $inactiveClient->road_number ?: 'N/A' }}
House Number:
{{ $inactiveClient->house_number ?: 'N/A' }}
Phone Number:
{{ $inactiveClient->phone_number ?: 'N/A' }}
Facebook:
@if($inactiveClient->facebook_url) {{ $inactiveClient->facebook_url }} @else N/A @endif
Network & Service Information
Branch:
@if($inactiveClient->branch) {{ $inactiveClient->branch->name }} @else N/A @endif
Server:
{{ $inactiveClient->server ?: 'N/A' }}
Protocol Type:
{{ $inactiveClient->protocol_type ?: 'N/A' }}
Connection Type:
{{ $inactiveClient->connection_type ?: 'N/A' }}
Zone:
{{ $inactiveClient->zone ?: 'N/A' }}
Sub Zone:
{{ $inactiveClient->sub_zone ?: 'N/A' }}
Box:
{{ $inactiveClient->box ?: 'N/A' }}
IP Address:
{{ $inactiveClient->ip_address ?: 'N/A' }}
Username/IP:
{{ $inactiveClient->username_ip ?: 'N/A' }}
Billing & Package Information
Client Type:
@if($inactiveClient->client_type) {{ $inactiveClient->client_type }} @else N/A @endif
Billing Status:
@if($inactiveClient->billing_status) {{ $inactiveClient->billing_status }} @else N/A @endif
Package:
{{ $inactiveClient->package ?: 'N/A' }}
Profile:
{{ $inactiveClient->profile ?: 'N/A' }}
Monthly Bill:
@if($inactiveClient->monthly_bill) BDT{{ number_format($inactiveClient->monthly_bill, 2) }} @else N/A @endif
Service Charge:
@if($inactiveClient->service_charge) BDT{{ number_format($inactiveClient->service_charge, 2) }} @else N/A @endif
Joining Date:
{{ $inactiveClient->joining_date ? $inactiveClient->joining_date->format('d/m/Y') : 'N/A' }}
Expire Date:
{{ $inactiveClient->expire_date ? $inactiveClient->expire_date->format('d/m/Y') : 'N/A' }}
Billing Start Month:
{{ $inactiveClient->billing_start_month ?: 'N/A' }}
Device Information
Device:
{{ $inactiveClient->device ?: 'N/A' }}
MAC/Serial No:
{{ $inactiveClient->device_mac_serial_no ?: 'N/A' }}
Vendor:
{{ $inactiveClient->vendor ?: 'N/A' }}
Purchase Date:
{{ $inactiveClient->purchase_date ? $inactiveClient->purchase_date->format('d/m/Y') : 'N/A' }}
Cable Requirement:
{{ $inactiveClient->cable_requirement_metre ? $inactiveClient->cable_requirement_metre . 'm' : 'N/A' }}
Fiber Code:
{{ $inactiveClient->fiber_code ?: 'N/A' }}
Number of Core:
{{ $inactiveClient->number_of_core ?: 'N/A' }}
Core Color:
{{ $inactiveClient->core_color ?: 'N/A' }}
Additional Information
Reference By:
{{ $inactiveClient->reference_by ?: 'N/A' }}
Connected By:
{{ $inactiveClient->connected_by ?: 'N/A' }}
VIP Client:
@if($inactiveClient->is_vip_client) Yes @else No @endif
Send Greetings SMS:
@if($inactiveClient->send_greetings_sms) Yes @else No @endif
Remarks:
{{ $inactiveClient->remarks ?: 'N/A' }}
Created At:
{{ $inactiveClient->created_at->format('d/m/Y H:i:s') }}
Updated At:
{{ $inactiveClient->updated_at->format('d/m/Y H:i:s') }}
@endsection