diff --git a/config/apidoc.php b/config/apidoc.php index 8ae737be..e49fa21e 100644 --- a/config/apidoc.php +++ b/config/apidoc.php @@ -12,7 +12,12 @@ /* * Static output folder: HTML documentation and assets will be generated in this folder. */ - 'output_folder' => 'public/docs', + 'output_folder' => 'public/docs', + + /** + * Information that will be displayed in the Info menu + */ + 'info_blade' => 'Welcome to the generated API reference.', /* * Settings for `laravel` type output. diff --git a/resources/views/partials/info.blade.php b/resources/views/partials/info.blade.php index 4ac1470e..19dd0f1e 100644 --- a/resources/views/partials/info.blade.php +++ b/resources/views/partials/info.blade.php @@ -1,6 +1,7 @@ # Info -Welcome to the generated API reference. +{{config('apidoc.info_blade', 'Welcome to the generated API reference.')}} + @if($showPostmanCollectionButton) [Get Postman Collection]({{url($outputPath.'/collection.json')}}) -@endif \ No newline at end of file +@endif