Support the ongoing development of Laravel.io →
posted 10 years ago
Authentication

Dear all; I am newbie in Laravel 5. I want to use an ACL system in L5. I prepared my all models and migrations. I created my middleware. I want to define my all potantial urls as a resource and build my ACL mechanism based on it. To do this, I should reach requested controller and action name in middleware programatically. How can I do this? Thanks.

Last updated 3 years ago.
0

on your middleware handle method the first param is the current request object. You can use it?

public function handle($request, Closure $next)
{
    if($request->input('color') == 'red') {
        return $next($request);
    }
}
Last updated 10 years ago.
0

Sign in to participate in this thread!

PHPverse

Your banner here too?

ziyahan ziyahan Joined 2 Mar 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.