Laravel Artisan Backup is Package for Backup The Database, Super Fast and Easy with Artisan Backup
composer require daycode/artisan-backup
Go to config/app.php, then put these code on service providers
'providers' => [
/*
* Package Service Providers...
*/
\DayCod\ArtisanBackup\ArtisanBackupServiceProvider::class,
],
Last, for make sure this package installed correctly.
composer dump-autoload && php artisan optimize:clear
├── ...
├── database
| ├── ...
| ├── backup
| | ├── mysql
| | | ├── sql
| | | ├── json
| | └── ...
| └── ...
└── ...
php artisan backup:mysql -t sql
Or
php artisan backup:mysql --type=sql
php artisan backup:mysql -t json
Or
php artisan backup:mysql --type=json
This project is released under the MIT license.