@lang('modules.customLinkSettings.linkTitle')
@lang('modules.customLinkSettings.url')
@lang('modules.customLinkSettings.canBeViewedBy')
@lang('modules.customLinkSettings.status')
@lang('app.action')
@forelse($custom_links as $key => $custom_link)
{{ $custom_link->link_title }}
url }}>{{ $custom_link->url }}
@php
$viewed = json_decode($custom_link->can_be_viewed_by);
@endphp
@foreach ($roles as $item)
@if (in_array($item->id, $viewed))
{{ $item->display_name }}
@endif
@endforeach
{!! $custom_link->status == 'active' ? \App\Helper\Common::active() : \App\Helper\Common::inactive() !!}
@empty
@endforelse