Faire un lien ouvert sur l'historique Laravel du contrôleur
$post = App\Models\Post::find(1);
echo url("/posts/{$post->id}");
// http://example.com/posts/1
Eager Eel
$post = App\Models\Post::find(1);
echo url("/posts/{$post->id}");
// http://example.com/posts/1