Swagger Authenticate the API in Laravel

In previous article we Create Swagger Post Method in Laravel and Create Swagger GET Method in Laravel. Now we will do Swagger Authenticate the API in Laravel. Open config/l5-swagger.php file and add securityDefinitions and securitySchemes. Check Create Swagger Configuration in …

Swagger GET Method in Laravel

In previous article we Create Swagger Post Method in Laravel. Now we will create Swagger GET Method in Laravel. Now, run php artisan l5-swagger:generate and check api at https://mywebsite.com/api/documentation. Read laravel swagger documentation here.

Swagger Post Method in Laravel

In previous two articles we Create Laravel Swagger API and Create Swagger Configuration in Laravel. Now we will add Swagger Post Method in Laravel. Now, run php artisan l5-swagger:generate and check api at https://mywebsite.com/api/documentation. Check Laravel swagger GET Method. Read …