ladumor/laravel-swagger
Laravel Swagger
Installation
Install the package by the following command,
composer require ladumor/laravel-swagger
Add Provider
Add the provider to your config/app.php into provider section if using lower version of laravel,
Ladumor\LaravelSwagger\LaravelSwaggerServiceProvider::class,
Add Facade
Add the Facade to your config/app.php into aliases section,
'LaravelSwagger' => \Ladumor\LaravelSwagger\LaravelSwaggerServiceProvider::class,
Generate Swagger file and publish the Assets. like, view
Run the following command to publish config file,
php artisan laravel-swagger:generate
Add route in web.php file
Route::get('/swagger-docs', function () {
return view('swagger.index');
});
Other Packages
- One Signal
- Laravel PWA (Progressive Web Application)
Learn Laravel Packages here
License
The MIT License (MIT). Please see License File for more information
Related Packages
php-tmdb/laravel
Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...
53,315
160
narutimateum/toastr-5.2-laravel
toastr.js for Laravel 5.2 easy notification like growl for example
37,567
13