Laravel Eloquent InRandomOrder() Query Example

In this tutorial, I will show you laravel 9 inRandomOrder query example. I will show you how to use laravel 9 eloquent inrandomorder method to fetch database records randomly. This article goes into detail on laravel model inrandomorder method example. This article will give you a simple example of laravel get random record from database.

You can use this code to get random rows from tables in laravel 6, laravel 7, laravel 8 and laravel 9 application. In this example i will give you a very complete example with source code of how to use inRandomOrder() in laravel application. So, let's see below examples that will help you how to use random records in laravel.

Example code:

namespace App\Http\Controllers;
  
use Illuminate\Http\Request;
use App\User;
  
class UserController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        $users = User::select("*")
                        ->inRandomOrder()
                        ->first();
  
        dd($users);
    }
}

 

Read also: Laravel 9 Eloquent addSelect() Query Example

 

Hope it can help you.

 

#laravel #laravel-9x