Skip to content
Advertisement

Laravel Change URL name detail

How do I make the post single URL like myweb.com/post-name instead myweb.com/post-id ? its works fine with posts id, but not with post name.

here my current route.

JavaScript

and here my controller.

JavaScript

thank you.

Advertisement

Answer

That is because you are using the $id as the identifier to resolve the post object:

JavaScript

Then:

JavaScript

If you want to resolve the $post by a different field, do this:

JavaScript

This should work for a route like this:

JavaScript

As a side note, you could resolve the model automatically makin use of Route Model Binding.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement