Laravel : Pagination with cache

Here is the code to Laravel Pagination with cache

Laravel : Pagination with cache
<?php

$currentPage = isset($_GET[‘page’]) ? (int)$_GET[‘page’] : 1;
$students = Cache::remember(‘students-‘ . $currentPage, 10, function(){
return DB::table(‘students’)->orderBy(‘updated_at’, ‘desc’)->paginate(10);
});

?>