Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs - add how use custom disk #1582

Merged
merged 2 commits into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/core/reference/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,18 @@ class YourCustomModel extends Model
```

Now your models will auto generate transforms as defined in your configuration and still use medialibrary under the hood.

## Use custom disk

By default, media is stored on the `public` disk. If you want to use a different disk, you need to set the environment variable `MEDIA_DISK` to the name of the disk you want to use.

```shell
MEDIA_DISK=s3
```
If you need more customisation, you can install publish the configuration file of `spatie/laravel-medialibrary`.

```shell
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="config"
```

Then you can change the disk in the configuration file `config/media-library.php`.
Loading