実装時に困ったエラーを備忘録として残しておきます。汎用的な内容に全くなっていないメモ書きです。
composer install時に Could not scan for classes inside “database/seeds” which does not appear to be a file nor a folder が出る
composer install
php artisan storage:linkで symlink(): No such file or directoryが出る
原因
既に何らかの原因でlib/public/
にパスが正しくないシンボリックリンクが存在すること
対処法
lib/public
のシンボリックリンクを削除し、再度php artisan storage:link
を実行する
コメント