Change the storage path in Laravel 5

后端 未结 6 987
星月不相逢
星月不相逢 2021-01-04 07:18

I want to change the storage path Laravel 5.1 uses to something like /home/test/storage. This has the advantage that these files are not stored in the repositor

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-04 07:38

    This works on Laravel 5.2

    File: app/Providers/AppServiceProvider.php

    public function register() {
      ...
      $this->app->useStoragePath(config('what_ever_you_want'));
      ...
    }
    

提交回复
热议问题