@extends('user.layout') @section('content')
{{ __('vCards') }} @if (count($vcards) >= $vcard_limit)
{{ __('vCards_limit_reached_text') }}
@endif
@if (count($vcards) < $vcard_limit) {{ __('Add_vCard') }} @endif
@if (count($vcards) == 0)

{{ __('NO_VCARD_FOUND') }}

@else
@foreach ($vcards as $key => $vcard) @endforeach
{{ __('vCard_Name') }} {{ __('Preview') }} {{ __('Direction') }} {{ __('Actions') }}
{{ strlen($vcard->vcard_name) > 20 ? mb_substr($vcard->vcard_name, 0, 20, 'UTF-8') . '...' : $vcard->vcard_name }} {{ $vcard->direction == 1 ? __('Left_to_Right') : __('Right_to_Left') }} @if (count($vcards) <= $vcard_limit) @endif
@csrf
@endif
@endsection