mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-03-12 17:40:04 +01:00
9 lines
634 B
PHP
9 lines
634 B
PHP
<!-- 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="dynamic-contrast social-icon fa-brands fa-{{$icon->title}}"></i></a>
|
|
@endforeach
|
|
</div>
|
|
@endif |