PATH:
home
/
rwabteecom
/
project_11
/
resources
/
views
/
dashboard
/
partials
/
Editing: socials.blade.php
<div class="d-flex socials align-items-center @if($domain_theme->header_layout == 'stacked' || $domain_theme->social_icons_position == 'bottom' ) justify-content-center @endif "> @foreach ($domain->socialIcons->where('status', 1) as $socialIcon) <a target="_blank" href="{{ route('redirectSocialLink',[$domain->domain,$socialIcon->id]) }}" class="social-icon {{$domain_theme->social_icons_style}}er" style=" @if ($domain_theme->social_icons_style == 'icon') color: {{ $domain_theme->social_icons_color }}; @elseif($domain_theme->social_icons_style == 'background') background: {{ $socialIcon->socialLink->background }}; color: {{ $socialIcon->socialLink->color }}; @endif"> <i class="{{ $socialIcon->socialLink->icon }}" style=" @if ($domain_theme->social_icons_style == 'icon') color: {{ $domain_theme->social_icons_color }}; @elseif($domain_theme->social_icons_style == 'background') color: {{ $socialIcon->socialLink->color }}; @endif"></i> </a> @endforeach </div>
SAVE
CANCEL