DEV Community

Phạm Đức Huy
Phạm Đức Huy

Posted on

Answer: Passing parameters to middleware in Laravel

You can use one of the following method to access the route parameter in a middleware:

First Method

$request->route()->parameters();

This method will return an array of all the parameters.

Second Method

$request->route('parameter_name');

Here parameter_name refers to what you called the parameter in the route.

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay