@include('shared.message')
@if(count($websites) == 0)
{{ __('No data') }}.
@else
{{ __('Domain') }}
{{ __('User') }}
@foreach($websites as $website)
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $websites->firstItem(), 'to' => $websites->lastItem(), 'total' => $websites->total()]) }}
{{ $websites->onEachSide(1)->links() }}
@endif