Laravelで作成したアプリの動かした際に、次のようなRuntimeExceptionが出た。
RuntimeException No application encryption key has been specified.
どうやら、.envファイルにAPP_KEYの指定が無い模様。
php artisan key:generate php artisan config:cache
php artisan key:generate
だけでは設定が反映されないため、php artisan config:cache
を実行する必要がある。