Complete the code to generate a new application key using Artisan.
php artisan [1]The correct Artisan command to generate a new application key is key:generate.
Complete the code to set the application key in the .env file after generating it.
APP_KEY=[1]The application key is stored as a base64 encoded string in the .env file, starting with 'base64:'.
Fix the error in the code to correctly generate and set the application key.
php artisan [1] --showThe correct command to display the application key without setting it is key:generate --show.
Fill both blanks to generate a new key and force overwrite the existing key.
php artisan [1] [2]
Use key:generate with the --force option to overwrite the existing key.
Fill all three blanks to generate a new key, force overwrite, and display the key without writing to .env.
php artisan [1] [2] [3]
Use key:generate with --force to overwrite and --show to display the key without saving.