Search
 
SCRIPT & CODE EXAMPLE
 

PHP

laravel get next record

public function show($id)
{

    // get the current user
    $user = User::find($id);

    // get previous user id
    $previous = User::where('id', '<', $user->id)->max('id');

    // get next user id
    $next = User::where('id', '>', $user->id)->min('id');

    return View::make('users.show')->with('previous', $previous)->with('next', $next);
}
Comment

PREVIOUS NEXT
Code Example
Php :: wordpress get text of wordpress post 
Php :: Laravel - create model, controller and migration in single artisan command 
Php :: phpspreadsheet edit excel file 
Php :: closing a php 
Php :: php check if folder empty 
Php :: php support block-level scope 
Php :: PHP CSV File Export Using fputcsv() 
Php :: how to get value of textarea in php 
Php :: array_map class method 
Php :: share link in facebook php 
Php :: wordpress get perma link 
Php :: check string php 
Php :: How to send data from PHP to Python 
Php :: carbon date minus days 
Php :: Add 7 days to the current date in PHP 
Php :: laravel mixed content error 
Php :: run composer with different php version 
Php :: php artisan route:list for specific name 
Php :: store as real file name laravel uplaod 
Php :: php check if query returns results 
Php :: convert object to array in php 
Php :: print last sql query laravel 
Php :: how to pass variable in inside function into where in laravel 
Php :: read global laravel request() 
Php :: php check of object is empty 
Php :: how to truncate the given string to the specified length in blade.php 
Php :: wp+get custom field phpto 
Php :: object values to array php 
Php :: php json_encode without square brackets 
Php :: how to check if there is an authenticated user laravel 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =