Configuring middleware
Before you're able to configure this, make sure to first publish the configuration file.
By default, Log Viewer applies the web
middleware which is required to correctly initialise a session.
You can easily add your own Laravel Middleware as well:
/*
|--------------------------------------------------------------------------
| Log Viewer route middleware.
|--------------------------------------------------------------------------
| The middleware should enable session and cookies support in order for the Log Viewer to work.
| The 'web' middleware will be applied automatically if empty.
|
*/
'middleware' => [
'web',
// add additional middleware here
],