Primary Details
| Name |
{{ $showclient->name }} |
| 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 }} |
Finance Details
| Payment Mode |
pay_mode ?? ""; ?> |
| Finance Emails |
finance_email) ? implode(',', json_decode($showclient->finance_email)) : ""; ?> |
Recent Payments
| Invoice Number |
Invoice Amount |
Invoice Date |
Services |
Remarks |
Status |
@if ($recent_payments->isEmpty())
| No Records found |
@else
@foreach ($recent_payments as $row)
| {{ $row->invoice_number }} |
{{ number_format($row->invoice_amount) }} |
{{ date('d-m-Y', strtotime($row->invoice_date)) }} |
{{ $row->services }} |
{{ $row->remarks }} |
{{ $row->invoice_status }} |
@endforeach
@endif
Documents
@if(!$showdocuments->isEmpty() == true)
@foreach($showdocuments as $docs)
@endforeach
@else
No Documents found
@endif
Notes
@if($show_notes->isEmpty())
- No notes found
@else
| # |
Content |
Services |
Author |
Date |
@foreach($show_notes as $notes)
| {{ $count }} |
{{ $notes->notes_body }} |
{{ $notes->services }} |
{{ $notes->created_by_info->name }} |
{{ $notes->created_at }} |
@endforeach
@endif
SMS Short Codes
{{-- | # | --}}
Name |
Code |
Type |
Network |
Toll Free |
Status |
Launch Date |
@if ($all_shortcodes->isEmpty())
| No Records found |
@else
@foreach ($all_shortcodes as $row)
| {{ $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)) }} |
@endforeach
@endif
{{-- end of x_content --}}