@if (count($vcards) > 0 || !empty($search))
@endif
@if (checkTotalVcard()) @endif
@if (count($vcards) > 0)
@php $styleCss = 'style'; @endphp
@foreach ($vcards as $vcard)
{{--
--}}
Vcard @if ($vcard->status == 0) {{ __('messages.vcard.disabled') }} @endif
{{ route('vcard.show', ['alias' => $vcard->url_alias]) }} @if ($vcard->status == 1) @endif @if (analyticsFeature()) @endif
{{--
--}}
{{ \Illuminate\Support\Str::words($vcard->occupation, 3, '...') }}
{{ getFormattedDateTime($vcard->created_at) }}
@endforeach
@if ($vcards->count() > 0)
{{ __('messages.showing') }} {{ $vcards->firstItem() }} - {{ $vcards->lastItem() }} {{ __('messages.of') }} {{ $vcards->total() }}
{{ $vcards->links() }}
@endif
@else
@if (empty($search))

{{ __('messages.no_vcards_available') }}

@else

{{ __('messages.no_vcards_found') }}

@endif
@endif