@extends('front.layouts.app3')
@section('title')
{{ __('messages.vcards_templates') }}
@endsection
@section('content')
{{ __('messages.vcards_templates') }}
@php
$TEMPLATE_NAME = [
1 => 'Simple_Contact',
2 => 'Executive_Profile',
3 => 'Clean_Canvas',
4 => 'Professional',
5 => 'Corporate_Connect',
6 => 'Modern_Edge',
7 => 'Business_Beacon',
8 => 'Corporate_Classic',
9 => 'Corporate_Identity',
10 => 'Pro_Network',
11 => 'Portfolio',
12 => 'Gym',
13 => 'Hospital',
14 => 'Event_Management',
15 => 'Salon',
16 => 'Lawyer',
17 => 'Programmer',
18 => 'CEO/CXO',
19 => 'Fashion_Beauty',
20 => 'Culinary_Food_Services',
21 => 'Social_Media',
22 => 'Dynamic_vcard',
23 => 'Consulting_Services',
24 => 'School_Templates',
25 => 'Social_Services',
26 => 'Retail_E-commerce',
27 => 'Pet_Shop',
28 => 'Pet_Clinic',
29 => 'Marriage',
30 => 'Taxi_Service',
31 => 'Handyman_Services',
32 => 'Interior_Designer',
33 => 'Musician_Templates',
34 => 'Photographer',
35 => 'Real_Estate',
36 => 'Travel_Agency',
37 => 'Flower_Garden',
];
@endphp
@foreach (getTemplateUrls() as $id => $url)
@if ($id == 22)
{{ __('messages.feature.dynamic_vcard') }}
@endif
{{ __('messages.' . $TEMPLATE_NAME[$id]) }}
@endforeach
@endsection