@include('shared.message')
@if(count($domains) == 0)
{{ __('No results found.') }}
@else
{{ __('Name') }}
{{ __('User') }}
{{ __('Links') }}
@foreach($domains as $domain)
@if(!$domain->user_id)
{{ __('Global') }}
@if($domain->id == config('settings.short_domain'))
{{ __('Default') }}
@endif
@endif
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $domains->firstItem(), 'to' => $domains->lastItem(), 'total' => $domains->total()]) }}
{{ $domains->onEachSide(1)->links() }}
@endif