@if(isset($client['client_logo_folder']) && $client['client_logo_folder'] != '')
@else
{{ $client->client_company_name }}
@endif
@if(auth()->user()->is_team)
{{ cleanLang(__('lang.client_name')) }}
{{ $client->client_company_name }}
{{ cleanLang(__('lang.telephone')) }}
{{ $client->client_phone }}
{{ cleanLang(__('lang.account_owner')) }} {{ cleanLang(__('lang.category')) }}
{{ $client->category_name }}
{{ cleanLang(__('lang.account_status')) }}
@if($client->client_status == 'active') {{ cleanLang(__('lang.active')) }} @else {{ cleanLang(__('lang.suspended')) }} @endif
{{ cleanLang(__('lang.tags')) }}
@foreach($client->tags as $tag) {{ $tag->tag_title }} @endforeach
@endif

@if(config('visibility.role_invoices')) @endif @if(config('visibility.role_payments')) @endif
{{ cleanLang(__('lang.invoices')) }} {{ runtimeMoneyFormat($client->sum_invoices_all) }}
{{ cleanLang(__('lang.payments')) }} {{ runtimeMoneyFormat($client->sum_all_payments) }}
{{ cleanLang(__('lang.completed_projects')) }} {{ $client->count_projects_completed }}
{{ cleanLang(__('lang.open_projects')) }} {{ $client->count_projects_pending }}

{{ cleanLang(__('lang.address')) }} @if($client->client_billing_street !== '')
{{ $client->client_billing_street }}
@endif @if($client->client_billing_city !== '')
{{ $client->client_billing_city }}
@endif @if($client->client_billing_state !== '')
{{ $client->client_billing_state }}
@endif @if($client->client_billing_zip !== '')
{{ $client->client_billing_zip }}
@endif @if($client->client_billing_country !== '')
{{ $client->client_billing_country }}
@endif
@if(config('visibility.client_show_custom_fields'))

@foreach($fields as $field) @if($field->customfields_show_client_page == 'yes')
{{ $field->customfields_title }}
{{ strip_tags(customFieldValue($field->customfields_name, $client, $field->customfields_datatype)) }}
@endif @endforeach @if(config('app.application_demo_mode'))
Demo Info
These are custom fields. You can change them or create your own.
@endif
@endif