Create Swagger Configuration in Laravel

In the previous article Create Laravel Swagger API documentation. Here we will Create Swagger Configuration in Laravel. Open config/l5-swagger.php file and these configurations, you can also update the values. Now, add the below annotations in app/Http/Controller/Controller.php Now, run php artisan …

Create Laravel Swagger API

Swagger provides us tools to create documentation for our apis and shares their definitions with teams, developers or consumers. Here we will create laravel swagger API documentation. Install the laravel swagger package using the below commands If facing version issue …

How to Install Git FTP

Here we will learn how to install git ftp to speedup our deployment. The advantage of the git ftp is we can maintain our project in efficient way. We can keep backup our code at git repository and we can …

Useful Laravel Development Tools

Useful Laravel Development Tools for optimization, speed up laravel applications, testing laravel applications, queries optimization and speedup coding. Laravel Debugbar You can integrate Laravel Debugbar in your laravel application to debug or check your code. Using this package you can …

Laravel using seeders and factory

Laravel using seeders and factory Create Model Admin php artisan make:model Admin -m Now, open the admin migration file in database directory and table columns. To create table run php artisan migrate Create Factory in Laravel to create random number …