@section('site_title', formatTitle([__('Links'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['title' => __('Links')], ]])

{{ __('Links') }}

{{ __('Links') }}
@include('shared.filter-tags')
@include('shared.message') @if(count($links) == 0) {{ __('No results found.') }} @else
{{ __('URL') }}
{{ __('User') }}
{{ __('Clicks') }}
@foreach($links as $link) @endforeach
{{ __('Showing :from-:to of :total', ['from' => $links->firstItem(), 'to' => $links->lastItem(), 'total' => $links->total()]) }}
{{ $links->onEachSide(1)->links() }}
@endif
@include('shared.modals.share-link')