@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->appends(request()->except('page'))->links() !!}
    
@else
    
        {{ trans('general.no_records') }}
    
@endif
@stack('pagination_end')