Buy

Admin Panel update from previous version

1.Introduction

In this article, we are going to update the admin panel source code from the previous version.

2.Update Instructions


Update the latest code with your current project

If you want to update the backend source code without your custom changes, please follow the steps below:

  • Download the latest files.
  • Replace all files except the following files and folders from your current project:
    • .env file
    • public/push-configurations/firebase.json
    • vendor folder
  • Delete the storage folder under the public folder.
  • Run the following commands:
    • composer install
    • npm install
    • php artisan migrate
    • php artisan db:seed
    • php artisan storage:link

Update the latest code with your current project after customizations

  • First, push your code to a Git branch. Then download the latest project code from Codecanyon and push it to another branch. Finally, merge both branches. Note: Conflicts may occur during merging. Resolve them carefully, as we are not responsible if something goes wrong.
  • Follow the sample video tutorial: https://youtu.be/mn9otng7Lho?si=9LNfpmTJ4cL6CL6N
  • After merging the latest updated code with your current code, follow the steps below:
    • Delete the storage folder under the public folder.
  • Run the following commands:
    • composer install
    • npm install
    • php artisan migrate
    • php artisan db:seed
    • php artisan storage:link