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
As per the documentation the config file doesn't hold a config variable 'exclude', so it was throwing error in the foreach statement
$exclude = config('request-logger.exclude');
if($exclude){ //Added an if , if an exclude is coming as null so that error was not thrown
foreach($exclude as $path) {
if($request->is($path)) return true;
}
}
return false;
Please fix it.
The text was updated successfully, but these errors were encountered:
As per the documentation the config file doesn't hold a config variable 'exclude', so it was throwing error in the foreach statement
Please fix it.
The text was updated successfully, but these errors were encountered: