@extends('app-new') @push('content-header') @endpush @section('content')

{{ $customer->name }}

{{ $customer->company_name ?? '-' }}
{{ ucfirst($customer->status) }}
Email
{{ $customer->email ?? '-' }}
Phone
{{ $customer->dial_code ? $customer->dial_code . ' ' : '' }}{{ $customer->mobile ?? '-' }}
Country
{{ $customer->country->name ?? '-' }}
State
{{ $customer->state->name ?? '-' }}
City
{{ $customer->city->name ?? '-' }}
@endsection