@php
$totalPages = $flights->lastPage();
$currentPage = $flights->currentPage();
$numPagesToShow = 5; // Number of pages to show before and after the current page
$startPage = max($currentPage - $numPagesToShow, 1);
$endPage = min($currentPage + $numPagesToShow, $totalPages);
@endphp
@for ($i = $startPage; $i <= $endPage; $i++)