joydip/laravel5_database_utilities

A package for taking Database dump from the UI.

dev-development 2018-07-23 06:39 UTC

This package is not auto-updated.

Last update: 2025-07-01 11:29:16 UTC


README

This Laravel package can create a backup of your Database and dump into your public directory, which is just a click away.

Installation and usage

This package requires PHP 5.6 or higher and Laravel 5.4 ( tested on Laravel 5.4, Let me know for other versions in case you come accross).

Open your config/app.php and add the following line to aliases array.

'Database' => Joydip\Laravel5_database_utilities\Facades\Database::class,

Open your config/app.php and add the following line to providers array.

Joydip\Laravel5_database_utilities\DatabaseServiceProvider::class,

Now run the following command.

php artisan vendor:publish

You will now see a database-manager.php file inside your config directory. This file allows you to set up your DB credentials and the name of the dump file generated when you wish to take the backup.

License

The MIT License (MIT). Please see License File for more information.