In L-4 it was simple:
$random_quote = Quotation::all()->random(1);
But now in L-5 not a single method described in this post is working: Laravel - Eloquent or Fluent random row
My view file just gets blank. Any ideas?
EDIT:
Solved: $random_quote = Quotation::orderByRaw("RAND()")->first();
question from:https://stackoverflow.com/questions/26983186/how-get-random-row-laravel-5