You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to make a route that matches all routes for a given request method? I need this to match any route to an OPTIONS request method. Something like this:
$router->options('*', function (){
returnnewResponse();
});
Is it possible to make a route that matches all routes for a given request method? I need this to match any route to an OPTIONS request method. Something like this: