Skip to content

Commit

Permalink
Merge pull request #37 from Zuruckt/patch-2
Browse files Browse the repository at this point in the history
Update middleware separator from , to ;
  • Loading branch information
roberto-butti authored Oct 1, 2020
2 parents 5f6b681 + c93f300 commit 6f2dea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
*/
return [
'prefix' => env('LARALENS_PREFIX', 'laralens'), // URL prefix (default=laralens)
'middleware' => explode(',', env('LARALENS_MIDDLEWARE', 'web')), // middleware (default=web) more separate with ,
'middleware' => explode(';', env('LARALENS_MIDDLEWARE', 'web')), // middleware (default=web) more separate with ;
'web-enabled' => env('LARALENS_WEB_ENABLED', 'off') // Activate web view (default=off)
];

0 comments on commit 6f2dea8

Please sign in to comment.