What's new
- Support middleware applying on package route group.
return [ 'middleware' => [ // ], ];
- Support custom html title of Swagger UI/Editor.
return [ 'ui' => [ 'title' => env('LARAVEL_SWAGGER_UI_TITLE'), // add this line ], 'editor' => [ 'title' => env('LARAVEL_SWAGGER_EDITOR_TITLE'), // add this line ], ];
See detail comment at config file. And you can re-run publish command with --force
flag to override and update the config file.
Thanks for these time, Vicky. Take care.