We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a051358 commit fb408a3Copy full SHA for fb408a3
resources/views/littlelink.blade.php
@@ -257,11 +257,13 @@ function themeAsset($path){
257
258
<!-- Icons -->
259
@php $icons = DB::table('links')->where('user_id', $userinfo->id)->where('button_id', 94)->get(); @endphp
260
+ @if(count($icons) > 0)
261
<div class="row fadein social-icon-div">
262
@foreach($icons as $icon)
263
<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>
264
@endforeach
265
</div>
266
+ @endif
267
268
269
0 commit comments