Backup Laravel and Database
This just helps a lot on backing up database and app, this package is a simple backup was enough even thought you can backup to S3, Rackspace, dropbox and custom ftp.
composer require spatie/laravel-backup
Register Provider
// config/app.php
'providers' => [
// ...
Spatie\Backup\BackupServiceProvider::class,
];
php artisan vendor:publish --provider=