The Backup Module ensures data security by allowing users to generate and manage system backups. It helps in preserving critical records by creating automated or manual backups.
This module can be accessed from the sidebar by going to Utility → Backup
Module.
To manually create a backup:
To automate backups, a cron job must be added to the server using the following command:
sh
Copy code
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
Ensure that mysqldump is installed on the system for successful database backups.
This module ensures data protection by providing a structured approach to creating and managing backups.