Skip to main content
🔮 Output PredictionLV Laravel Hard⚡+35 XP

Route Model Binding

What is $post in this route?

Laravel
Route::get('/posts/{post}', function (Post $post) {
  return $post;
});

🔮 What is the output?