PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
themes
/
wowy
/
widgets
/
site-info
/
templates
<div class="col-lg-4 col-md-6"> <div class="widget-about font-md mb-md-5 mb-lg-0"> @if (theme_option('logo')) <div class="logo logo-width-1 wow fadeIn animated"> <a href="{{ route('public.index') }}"> <img src="{{ RvMedia::getImageUrl(theme_option('logo')) }}" alt="{{ theme_option('site_title') }}"> </a> </div> @endif @if (theme_option('address') || theme_option('phone') || theme_option('working_hours')) <h4 class="mt-20 mb-10 fw-600 text-grey-4 wow fadeIn animated">{{ __('Contact') }}</h4> @if (theme_option('address')) <p class="wow fadeIn animated"> <strong class="d-inline-block">{{ __('Address') }}:</strong> {{ theme_option('address') }} </p> @endif @if (theme_option('phone')) <p class="wow fadeIn animated"> <strong class="d-inline-block">{{ __('Phone') }}:</strong> {{ theme_option('phone') }} </p> @endif @if (theme_option('working_hours')) <p class="wow fadeIn animated"> <strong class="d-inline-block">{{ __('Working hours') }}:</strong> {{ theme_option('working_hours') }} </p> @endif @endif @if (theme_option('social_links')) <h4 class="mb-10 mt-20 fw-600 text-grey-4 wow fadeIn animated">{{ __('Follow Us') }}</h4> <div class="mobile-social-icon wow fadeIn animated mb-sm-5 mb-md-0"> @foreach(json_decode(theme_option('social_links'), true) as $socialLink) @if (count($socialLink) == 4) <a href="{{ $socialLink[2]['value'] }}" title="{{ $socialLink[0]['value'] }}" style="background-color: {{ $socialLink[3]['value'] }}; border: 1px solid {{ $socialLink[3]['value'] }};"> <i class="{{ $socialLink[1]['value'] }}"></i> </a> @endif @endforeach </div> @endif </div> </div>
[-] backend.blade.php
[edit]
[+]
..
[-] frontend.blade.php
[edit]