@extends('front.layout') @section('pagename') - {{ __('vCards') }} @endsection @section('meta-description', !empty($seo) ? $seo->vcard_template_description : '') @section('meta-keywords', !empty($seo) ? $seo->vcard_template_keywords : '') @section('breadcrumb-title') {{ __('vCards') }} @endsection @section('breadcrumb-link') {{ __('vCards') }} @endsection @section('content')
@foreach ($vcards as $vcard)
@php preg_match('/\d+/', $vcard->template_name, $matches); $number = $matches[0] ?? ''; $vcardLabel = __('vCard'); @endphp
{{ $vcardLabel . ' ' . $number }}
@endforeach
@endsection