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