@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
Client Details @include('commons.notifications')
{{-- start of content --}}

Primary Details

Name {{ $showclient->name }}
Name {{ $showclient->country }} @if($showclient->country_flag_info !== null)         Generic Client Icon @endif
Account Manager {{ $showclient->auth_user_info->name }}
Contact Person {{ $showclient->contact_person }}
Phone {{ $showclient->phone }}
Email {{ $showclient->email }}
Skype Name {{ $showclient->skype_name }}
LinkedIn {{ $showclient->linkedin_name }}
Contract Type {{ $showclient->contract_type }}
Contract Validity {{ $showclient->contract_validity }}
Contract Auto Renew {{ $showclient->contract_auto_renew }}

Company Details

Name {{ $showclient->country }}
Company Type {{ $showclient->company_type }}
Connections connections) ? implode(',', json_decode($showclient->connections)) : ""; ?>
SMPP Details smpp_details) ? implode(',', json_decode($showclient->smpp_details)) : ""; ?>
Message Types message_types) ? implode(',', json_decode($showclient->message_types)) : ""; ?>
Support Phones support_phones) ? implode(',', json_decode($showclient->support_phones)) : ""; ?>
Support Emails support_emails) ? implode(',', json_decode($showclient->support_emails)) : ""; ?>
Rate Emails rate_emails) ? implode(',', json_decode($showclient->rate_emails)) : ""; ?>
Support Skype IDs support_skype) ? implode(',', json_decode($showclient->support_skype)) : ""; ?>
How We got this client {{ $showclient->how_we_got_client }}

Services

@if($show_services)
    @foreach($show_services as $service)
  • {{ $service }}
  • @endforeach
@endif

Finance Details

Payment Mode pay_mode ?? ""; ?>
Finance Emails finance_email) ? implode(',', json_decode($showclient->finance_email)) : ""; ?>
Recent Payments
@if ($recent_payments->isEmpty()) @else @foreach ($recent_payments as $row) @endforeach @endif
Invoice Number Invoice Amount Invoice Date Services Remarks Status
No Records found
{{ $row->invoice_number }} {{ number_format($row->invoice_amount) }} {{ date('d-m-Y', strtotime($row->invoice_date)) }} {{ $row->services }} {{ $row->remarks }} {{ $row->invoice_status }}

Documents

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

No Documents found

@endif

Notes

    @if($show_notes->isEmpty())
  • No notes found
  • @else @foreach($show_notes as $notes) @endforeach
    # Content Services Author Date
    {{ $count }} {{ $notes->notes_body }} {{ $notes->services }} {{ $notes->created_by_info->name }} {{ $notes->created_at }}
    @endif

SMS Short Codes

{{-- --}} @if ($all_shortcodes->isEmpty()) @else @foreach ($all_shortcodes as $row) @endforeach @endif
#Name Code Type Network Toll Free Status Launch Date
No Records found
{{ $row->name }} {{ $row->shortcode }} {{ $row->code_type }} {{ ucfirst($row->network) }} {{ ucfirst($row->country) }} {{ strtoupper($row->toll_free) }} {{ $row->status }} {{ date('d-m-Y', strtotime($row->launch_date)) }}
{{-- end of x_content --}}
{{-- end of x_panel --}}
@endsection @section('javascript') @endsection