@extends('vcardTemplates.vcard11.app') @section('title') {{__('auth.home')}} @endsection @section('page_css') @endsection @section('page_name') {{__('auth.about')}} @endsection @section('content')

{{ $vcard->occupation }}

{{ strtoupper($vcard->first_name.' '.$vcard->last_name) }}

{{__('messages.common.description')}}

{!! $vcard->description !!}
@if(isset($vcard->first_name))
@if($vcard->location)
{{__('messages.user.location')}} : {!! ucwords($vcard->location) !!}
@endif @if($vcard->dob)
{{__('messages.vcard.dob')}} : {{$vcard->dob}}
@endif @if($vcard->phone || $vcard->alternative_phone)
{{__('auth.contact')}} :
@endif {{-- MY PORTFOLIO--}}
@endif
{{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

FINISHED PROJECTS

--}} {{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

WORKING HOURS

--}} {{--
--}} {{--
--}} {{--

--}} {{-- 0--}} {{--

--}} {{--

AWARDS WON

--}} {{--
--}} {{--
--}}
@if(checkFeature('services') && $vcard->services->count())

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

@endif @if(checkFeature('products') && $vcard->products->count())

{{__('messages.feature.products')}}

@endif {{--testimonial--}} @if(checkFeature('testimonials') && $vcard->testimonials->count())
@php $testimonialCount = 1; $style = 'style'; $marginBottom = 'margin-bottom'; @endphp

{{__('messages.feature.testimonials')}}

@foreach($vcard->testimonials as $testimonial)
{{ $testimonialCount++ }}
{{ucwords( $testimonial->name) }}

"{!! $testimonial->description !!} "

@endforeach
@endif @if(checkFeature('gallery') && $vcard->gallery->count())

{{__('messages.feature.gallery')}}

@foreach($vcard->gallery as $file) @php $infoPath = pathinfo(public_path($file->gallery_image)); $extension = $infoPath['extension']; @endphp
@if($file->type == App\Models\Gallery::TYPE_IMAGE) @elseif($file->type == App\Models\Gallery::TYPE_FILE) @if($extension=='pdf') @endif @if($extension=='xls') @endif @if($extension=='csv') @endif @if($extension=='xlsx') @endif @else @endif
@endforeach
@endif
@if(checkFeature('advanced')) @if(checkFeature('advanced')->hide_branding && $vcard->branding == 0) @if($vcard->made_by) made_by_url)) href="{{$vcard->made_by_url}}" @endif class="text-center text-decoration-none text-white" target="_blank"> {{ __('messages.made_by') }} {{ $vcard->made_by }} @endif @else
{{ __('messages.made_by') }} {{ $setting['app_name'] }}
@endif @endif
@endsection