I have an Eloquent model called Question
linked to a database table named questions
.
Is there an Eloquent function that will let me take a single random question (or a set number of random questions) from the database? Something like the following:
$random_question = Question::takeRandom(1)->get();
or
$random_questions = Question::takeRandom(5)->get();