@include('shared.message')
@if(count($links) == 0)
{{ __('No results found.') }}
@else
{{ __('URL') }}
{{ __('User') }}
{{ __('Clicks') }}
@include('icons.more-horiz', ['class' => 'fill-current w-4 h-4'])
@foreach($links as $link)
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $links->firstItem(), 'to' => $links->lastItem(), 'total' => $links->total()]) }}
{{ $links->onEachSide(1)->links() }}
@endif