Upgrading the Laravel Package with aim-admin:upgrade
The aim-admin:upgrade
command will upgrade the resources in your Laravel project to ensure they meet the latest requirements. This includes updating configurations, views, migrations, and any other necessary files.
Important Note
Running the aim-admin:upgrade
command does not replace the need to run the composer update command. It is still necessary to run composer update to ensure that all PHP dependencies are up-to-date. The aim-admin:upgrade
command focuses on resources and npm packages, while composer update handles the PHP packages.
shell
composer update
php artisan aim-admin:upgrade
npm i
npm run build
Publish the configuration file if you have not made any changes to your existing config file:
shell
php artisan vendor:publish --tag="aim-admin-config" --force