@extends('user.layout') @section('content')
vCards @if (count($vcards) >= $vcard_limit)
You've reached the maximum limit of vcard than your current package, you can't add or edit vcard right now, to enable edit and create action you must extend your package.
@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