@stack('pagination_start')
    @if ($items->firstItem())
        
            {{ trans('pagination.showing', ['first' => $items->firstItem(), 'last' => $items->lastItem(), 'total' => $items->total(), 'type' => strtolower(trans_choice('general.' . $type, 2))]) }}
        
        
            {!! $items->withPath(request()->url())->withQueryString()->links() !!}
        
    @else
        
            {{ trans('general.no_records') }}
        
    @endif
@stack('pagination_end')