Skip to content

Instantly share code, notes, and snippets.

@nicolaskempf57
Last active February 10, 2021 20:47
Show Gist options
  • Save nicolaskempf57/99d49ad098f1e7d68794282410cd2560 to your computer and use it in GitHub Desktop.
Save nicolaskempf57/99d49ad098f1e7d68794282410cd2560 to your computer and use it in GitHub Desktop.
<?php
// routes
use App\Models\Post;
Route::get('/posts/{post:slug}', function (Post $post) {
return $post;
});
// ou dans votre modèle
public function getRouteKeyName()
{
return 'slug';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment