@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('css') @endsection @section('content') @include('client.partials.new_notes') @include('client.partials.edit-notes') @include('client.partials.finance') @include('client.partials.create-shortcodes') @include('client.partials.edit-shortcodes') @include('client.partials.edit-finance') @include('client.partials.progress_indicator_details') @include('client.partials.support_fees_form') @include('client.partials.change-am')

Client Details : {{ $showclient->name }}

@include('commons.notifications')

Details Summary

  • Total Payments {{ number_format($recent_payments->sum('invoice_amount')) }}
  • Short Codes {{ $ussd_codes->count() + $sms_codes->count() + $voice_codes->count() }}
  • Documents Count {{ $showdocuments->count() }}
@if($showclient->country_flag_info !== null) @else @endif

{{ $showclient->name }}

Status : {{ $showclient->status }}  Progress: {{ $showclient->progress_indicator_score }}%

Client Account Manager : contact_person ?? 'N/A' ?>
Click Account Manager : auth_user_info->name ?? 'N/A' ?> @if($change_account_mgr_permisson == 'YES' ) @endif
  • phone ?? "N/A"; ?> | email ?? "N/A"; ?>
  • skype_name ?? "N/A"; ?> | linkedin_name ?? "N/A"; ?>
  • Country : {{ $showclient->country or "N/A" }} | Company Type : {{ $showclient->company_type or "N/A" }}
@if(session('current_user.id') == $showclient->auth_user_id) Edit Client Onboarding Checklist @endif
Contract
  • Contract Type : {{ ucfirst($showclient->contract_type) ?? 'N/A'}}
  • Contract Validity (Date) : {{ $showclient->contract_validity or 'N/A'}}
  • Contract Auto Renewal : {{ $showclient->contract_auto_renew or 'N/A'}}
@if($showclient->contract_auto_renew != 'YES')

Renewal Due : {{ $renewal_due }}

@endif
Connection Details

Connection Types : connections) { echo implode(", ", json_decode($showclient->connections, true)); } else {echo "N/A"; } ?>

SMPP Username : smpp_username) { echo $showclient->smpp_username; } else {echo "N/A"; } ?>

Message Types : message_types) { $types_array = json_decode($showclient->message_types); echo implode(', ', $types_array); } else { echo "N/A"; } ?>

Documents
@if(!$showdocuments->isEmpty() == true) @foreach($showdocuments as $docs)

{{ $docs->name }}.{{ $docs->file_extension }}

@endforeach @else

No Documents uploaded

@endif
How We Got This Client

how_we_got_client ?? "N/A" ?>

Notes(Highlights)
  • count(); $i++) { ?> {{ $i+1 . "." }} {{ $show_notes_highlight[$i]->notes_body }}

Support Phone(s)
@if(!empty($showclient->support_phones)) support_phones, true) ?>
  • {{ $row }}
@else N/A @endif
Support Email(s)
@if(!empty($showclient->support_emails)) support_emails, true) ?>
  • {{ $row }}
@else N/A @endif @if(!empty($showclient->rate_emails))
Rates Email(s)
rate_emails, true) ?>
  • {{ $row }}
@else N/A @endif
Finance Email(s)
@if(!empty($showclient->finance_email)) finance_email, true) ?>
  • {{ $row }}
@else N/A @endif
Support Skype ID(s)
@if(!empty($showclient->support_skype)) support_skype, true) ?>
  • {{ $row }}
@else N/A @endif

Fees List

@include('client.partials.support_fees')
    @if($show_notes->isEmpty())
  • No notes found
  • @else count(); $i++) { ?> highlight == 'YES'): continue; endif; ?>
  • ">

    created_at)); ?>

    created_at)); ?>

    created_at)); ?>

    {{ $show_notes[$i]->client_info->name }}

    Content : {{ $show_notes[$i]->notes_body }}

    Account Manager : {{ $show_notes[$i]->created_by_info->name }}

  • @endif
@include('client.partials.recent-payments')
@include('client.partials.sms-codes')
@include('client.partials.ussd-codes')
@include('client.partials.voice-codes')
@endsection @section('javascript') @endsection