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