Mostrar publicación aleatoria en Laravel
public function getRandomPost() {
$post = Post::inRandomOrder()->first();
return redirect()->route('posts.show', ["id" => $post->id]);
}
Frail Fly