@if ($subject instanceof \Illuminate\Pagination\LengthAwarePaginator)
{{ __('translations.pagination.records', ['current' => $subject->count(), 'total' => $subject->total()]) }}
{{ $subject->links('vendor.pagination.bootstrap-4') }}
@else
{{ __('translations.pagination.total_records', ['total' => collect($subject)->count()]) }}
@endif