@foreach($contacts as $contact) @if(config('visibility.contacts_col_checkboxes')) account_owner) }}> @endif user @if($contact->is_online) @endif @if(config('visibility.show_contact_profile')) {{ $contact->first_name }} {{ $contact->last_name }} @else {{ $contact->first_name }} {{ $contact->last_name }} @endif @if($contact->account_owner == 'yes') @endif @if(config('visibility.contacts_col_client')) {{ str_limit($contact->client_company_name, 15) }} @endif {{ $contact->email }} {{ $contact->phone ?? '---'}} @if(config('visibility.contacts_col_last_active')) {{ $contact->carbon_last_seen }} @endif @if(config('visibility.action_column')) @if(config('visibility.action_buttons_delete') == 'show' && $contact->account_owner == 'no') @else @endif @if(config('visibility.action_buttons_edit')) @endif @if(auth()->user()->is_team) @endif @if(config('visibility.action_buttons_change_password')) @endif @if(auth()->user()->is_admin) @endif @endif @endforeach