Laravel 흔한 이슈

  • /bootstrap/cache directory must be present and writable 에러
php artisan route:clear
php artisan view:clear
php artisan config:clear
php artisan cache:clear
php artisan optimize:clear

  • Failed to clear cache. Make sure you have the appropriate permissions.
  1. storage/framework/cache/ 안에 data dir이 있는지 확인, 없으면 수동 생성
  2. /cache/data 있으면 cache 안에 데이터 모두 삭제
  3. 그런 다음 아래 실행
php artisan cache:clear