@error('search') @enderror
{{ __('Search') }} {{ __('Searching...') }} {{ __('Clear all') }}
@if (session('error')) @endif
{{ __('Loading...') }}
@if ($contacts && $contacts->count() > 0) @foreach ($contacts as $contact) @endforeach @else @endif
profile
{{ $contact['name'] }}
@if ($contact['full_name'] != $contact['name'])
{{ $contact['full_name'] }}
@endif
{{ $contact['location'] }}
@if($contact['profile_type_name'] === 'Organization')
{{ __('Organization') }}
@elseif($contact['profile_type_name'] === 'Bank')
{{ __('Bank') }}
@elseif($contact['profile_type_name'] === 'Admin')
{{ __('Admin') }}
@endif
@if ($contact['has_star']) @endif @if ($contact['has_bookmark']) @endif @if (!$contact['has_star'] && !$contact['has_bookmark']) @endif
{{ __('One moment, collecting all your contacts...') }} {{ __('No contacts found') }}
@if($contacts && $contacts->hasPages())
{{ $contacts->links('livewire.long-paginator') }}
@endif
@if ($contacts && $contacts->total() > 0)
{{ __('per page') }}
{{ trans_choice('messages.contacts_found', $contacts->total(), ['count' => $contacts->total()]) }}
@endif @push('scripts') {{-- Scroll to top when clicking paginator --}} @endpush