In this article, I will be showing you how to retrieve random rows in laravel eloquent. AppPost::inRandomOrder()->get() will return random records Here is the code which will retrieve random rows in Laravel 6.0 eloquent$blogs= Blog::orderByRaw('RAND()')->take(10)->get();PHPHere is another way to get a random row using Laravel 6.0 eloquent using inRandomOrder method.AppPost::inRandomOrder()->get()PHPAlternatively, You can get a record in random order in Laravel 6.0eloquent. It’s not a recommended way if we have huge records in the database. As it first takes all data from database and then applies a filter on it.AppPost::all()->random(4);
Enter comment