Update littlelink.blade.php

This commit is contained in:
Julian Prieber 2023-05-10 19:16:43 +02:00
parent a051358d7e
commit fb408a3814

View File

@ -257,11 +257,13 @@ if($customBackgroundExists == true){
<!-- Icons -->
@php $icons = DB::table('links')->where('user_id', $userinfo->id)->where('button_id', 94)->get(); @endphp
@if(count($icons) > 0)
<div class="row fadein social-icon-div">
@foreach($icons as $icon)
<a class="social-hover social-link" href="{{ route('clickNumber') . '/' . $icon->id. "?" . $icon->link}}" title="{{ucfirst($icon->title)}}" aria-label="{{ucfirst($icon->title)}}" @if(theme('open_links_in_same_tab') != "true")target="_blank"@endif><i class="social-icon fa-brands fa-{{$icon->title}}"></i></a>
@endforeach
</div>
@endif
@endforeach