@extends('user-front.layout')
@section('tab-title')
{{ $keywords['Home'] ?? 'Home' }}
@endsection
@php
Config::set('app.timezone', $userBs->timezoneinfo->timezone ?? '');
@endphp
@section('meta-description', !empty($userSeo) ? $userSeo->home_meta_description : '')
@section('meta-keywords', !empty($userSeo) ? $userSeo->home_meta_keywords : '')
@section('content')
@if (empty($static->title))
{{ __('Federico Chiesa') }}
{{ __("Hi I'm, UI/UX Designer") }}
{{ __("Hi I'm, Graphic Designer") }}
{{ __("Hi I'm, Banner Designer") }}
{{ __('Hire Me') }}
@else
{{ $static->title }}
@php
$designations = explode(',', @$static->designation);
@endphp
@if (count($designations) > 1)
@foreach ($designations as $designation)
{{ $designation }}
@endforeach
@endif
@if (!empty($static->btn_url))
{{ empty($static->btn_name) ? 'Hire Me' : $static->btn_name }}
@endif
@endif
@if (isset($home_sections->intro_section) && $home_sections->intro_section == 1)
@endif
@if (in_array('Skill', $packagePermissions) &&
isset($home_sections->skills_section) &&
$home_sections->skills_section == 1)
{{ @$home_text->skills_title }}
{{ @$home_text->skills_subtitle }}
{{ @$home_text->skills_content }}
@forelse ($skills as $skill)
-
{{ @$skill->title }} {{ @$skill->percentage . '%' }}
@empty
-
{{ $keywords['NO_Skill_FOUND'] ?? __('No Skill Found') }}
@endforelse
@endif
@if (in_array('Service', $packagePermissions) &&
isset($home_sections->featured_services_section) &&
$home_sections->featured_services_section == 1)
{{ @$home_text->service_title }}
{{ @$home_text->service_subtitle }}
@forelse ($services as $service)
@empty
{{ $keywords['NO_SERVICE_FOUND'] ?? __('NO SERVICE FOUND!') }}
@endforelse
@endif
@if (in_array('Portfolio', $packagePermissions) &&
isset($home_sections->job_education_section) &&
$home_sections->job_education_section == 1)
{{ @$home_text->job_education_title }}
{{ @$home_text->job_education_subtitle }}
{{ $keywords['Education'] ?? __('Education') }}
@foreach ($educations as $education)
{{ $education->degree_name }}
{{ \Carbon\Carbon::parse($education->start_date)->format('M j, Y') }} -
@if (!empty($education->end_date))
{{ \Carbon\Carbon::parse($education->end_date)->format('M j, Y') }}
@else
{{ $keywords['Present'] ?? 'Present' }}
@endif
{!! nl2br($education->short_description) !!}
@endforeach
{{ $keywords['Job'] ?? __('Job') }}
@foreach ($job_experiences as $job_experience)
{{ $job_experience->designation }} [{{ $job_experience->company_name }}]
{{ \Carbon\Carbon::parse($job_experience->start_date)->format('M j, Y') }} -
@if ($job_experience->is_continue == 0)
{{ \Carbon\Carbon::parse($job_experience->end_date)->format('M j, Y') }}
@else
{{ $keywords['Present'] ?? 'Present' }}
@endif
{!! nl2br($job_experience->content) !!}
@endforeach
@endif
@if (isset($home_sections->counter_info_section) && $home_sections->counter_info_section == 1)
@forelse ($countInfos as $counter)
{{ $counter->count }} +
{{ $counter->title }}
@empty
{{ $keywords['no_information_found'] ?? __('No counter Information Found') }}
{{ '!' }}
@endforelse
@endif
@if (in_array('Portfolio', $packagePermissions) &&
isset($home_sections->portfolio_section) &&
$home_sections->portfolio_section == 1)
{{ @$home_text->portfolio_title }}
{{ @$home_text->portfolio_subtitle }}
@if (count($portfolios) > 0)
- {{ $keywords['All'] ?? 'All' }}
@foreach ($portfolio_categories as $category)
-
{{ convertUtf8($category->name) }}
@endforeach
@else
{{ $keywords['NO_PORTFOLIO_FOUND'] ?? __('NO PORTFOLIO FOUND!') }}
@endif
@if (count($portfolios) > 0)
@foreach ($portfolios as $portfolio)
@endforeach
@endif
@endif
@if (in_array('Testimonial', $packagePermissions) &&
isset($home_sections->testimonials_section) &&
$home_sections->testimonials_section == 1)
{{ @$home_text->testimonial_title }}
{{ @$home_text->testimonial_subtitle }}
@forelse ($testimonials as $testimonial)
{{ $testimonial->name }}
{{ $testimonial->occupation }}
{!! replaceBaseUrl($testimonial->content) !!}
@empty
{{ $keywords['NO_TESTIMONIAL_FOUND'] ?? __('NO TESTIMONIAL FOUND!') }}
@endforelse
@endif
@if (in_array('Blog', $packagePermissions) && isset($home_sections->blogs_section) && $home_sections->blogs_section == 1)
{{ @$home_text->blog_title }}
{{ @$home_text->blog_subtitle }}
@forelse ($blogs as $blog)
{!! strlen(strip_tags($blog->content)) > 80
? mb_substr(strip_tags($blog->content), 0, 80, 'UTF-8') . '...'
: strip_tags($blog->content) !!}
@empty
{{ $keywords['No_Blog_Found'] ?? __('No Blog Found !') }}
@endforelse
@endif
@if (isset($home_sections->contact_section) && $home_sections->contact_section == 1)
@endif