# configディレクトリからstorage_pathで設定している値を確認して
$ find config/ -type f | xargs grep storage_path | grep framework
config/cache.php: 'path' => storage_path('framework/cache/data'),
config/iwrsAspect.php: 'compile_dir' => storage_path('framework/aop/compile'),
config/iwrsAspect.php: 'cache_dir' => storage_path('framework/aop/cache'),
config/session.php: 'files' => storage_path('framework/sessions'),
config/view.php: 'compiled' => realpath(storage_path('framework/views')),
# ないディレクトリを作成する
$ mkdir -p storage/framework/cache/data/
$ mkdir -p storage/framework/aop/cache
$ mkdir -p storage/framework/sessions
$ mkdir -p storage/framework/views