@extends('layouts.front-layout') @section('title') All Category @endsection @section('content') All Category Home / Shop @if($get_categories->count() > 0) Show Pages: @php $totalPages = $get_categories->lastPage(); $currentPage = $get_categories->currentPage(); $maxPagesToShow = 10; $additionalPagesToShow = 10; $startPage = max(1, $currentPage - 2); $endPage = min($totalPages, $currentPage + $additionalPagesToShow); @endphp @if($startPage > 1) 1 @if($startPage > 2) ... @endif @endif @for($page = $startPage; $page <= $endPage; $page++) {{ $page }} @endfor @if($endPage < $totalPages) @if($endPage < $totalPages - 1) ... @endif {{ $totalPages }} @endif @endif Default Sorting @forelse($get_categories as $category) {{$category->category_name ? : ''}} {!! \Illuminate\Support\Str::limit(strip_tags($category->description), 80, '...') !!} @empty Category Data Not Available @endforelse {{-- --}} {{-- @php--}} {{-- $sort = request('sort', '');--}} {{-- $inStock = request('in_stock') ? 'on' : '';--}} {{-- $totalPages = $get_products->lastPage();--}} {{-- $currentPage = $get_products->currentPage();--}} {{-- $maxPagesToShow = 10;--}} {{-- $additionalPagesToShow = 10;--}} {{-- $startPage = max(1, $currentPage - 2);--}} {{-- $endPage = min($totalPages, $currentPage + $additionalPagesToShow);--}} {{-- @endphp--}} {{-- --}} {{-- --}} {{-- --}} {{-- @if ($get_products->onFirstPage())--}} {{-- Previous--}} {{-- @else--}} {{-- Previous--}} {{-- @endif--}} {{-- --}} {{-- --}} {{-- --}} {{-- @if($get_products->count() > 0)--}} {{-- Show Pages:--}} {{-- @if($startPage > 1)--}} {{-- 1--}} {{-- @if($startPage > 2)--}} {{-- ...--}} {{-- @endif--}} {{-- @endif--}} {{-- @for($page = $startPage; $page <= $endPage; $page++)--}} {{-- --}} {{-- {{ $page }}--}} {{-- --}} {{-- @endfor--}} {{-- @if($endPage < $totalPages)--}} {{-- @if($endPage < $totalPages - 1)--}} {{-- ...--}} {{-- @endif--}} {{-- {{ $totalPages }}--}} {{-- @endif--}} {{-- @endif--}} {{-- --}} {{-- --}} {{-- --}} {{-- @if ($get_products->hasMorePages())--}} {{-- Next--}} {{-- @else--}} {{-- Next--}} {{-- @endif--}} {{-- --}} {{-- --}} {{-- --}} @endsection