Answers for "use middleware to a function in controller laravel"

5

laravel controller middleware

class UserController extends Controller
{
    /**
     * Instantiate a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('auth');

        $this->middleware('log')->only('index');

        $this->middleware('subscribed')->except('store');
    }
}
Posted by: Guest on May-08-2020
2

make middleware in controller laravel

class UserController extends Controller
{
    /**
     * Instantiate a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware(function ($request, $next) {
    		return $next($request);
		});
        $this->middleware('auth');
        $this->middleware('log')->only('index');
        $this->middleware('subscribed')->except('store');
        
    }
}
Posted by: Guest on July-24-2021

Code answers related to "use middleware to a function in controller laravel"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language