@section('site_title', formatTitle([__('Pixels'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('dashboard'), 'title' => __('Home')], ['title' => __('Pixels')] ]])

{{ __('Pixels') }}

{{ __('New') }}
{{ __('Pixels') }}
@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() }}
@include('pixels.partials.menu')
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $pixels->firstItem(), 'to' => $pixels->lastItem(), 'total' => $pixels->total()]) }}
{{ $pixels->onEachSide(1)->links() }}
@endif