@include('shared.message')
@if(count($pixels) == 0)
{{ __('No results found.') }}
@else
{{ __('Name') }}
{{ __('Type') }}
{{ __('Links') }}
{{ __('Created at') }}
@foreach($pixels as $pixel)
{{ config('pixels')[$pixel->type]['name'] }}
{{ $pixel->created_at->diffForHumans() }}
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $pixels->firstItem(), 'to' => $pixels->lastItem(), 'total' => $pixels->total()]) }}
{{ $pixels->onEachSide(1)->links() }}
@endif