Skip to content

Instantly share code, notes, and snippets.

@nicolaskempf57
Created February 9, 2021 18:05
Show Gist options
  • Save nicolaskempf57/45937a3a86950a6220064505a195c4e1 to your computer and use it in GitHub Desktop.
Save nicolaskempf57/45937a3a86950a6220064505a195c4e1 to your computer and use it in GitHub Desktop.
<?php
use App\Models\User;
Route::get('/users/{user}', function (User $user) {
return $user->email;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment