Skip to content
Closed
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
8 changes: 8 additions & 0 deletions 1.x/features/profile-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ If you wish to allow users to upload custom profile photos, you must enable the
Features::teams(),
],
```
You should also remember to run

```bash
php artisan storage:link
```
in order to setup the links necessary to store and make the image files accessible.


### Managing Profile Photos

Expand All @@ -42,6 +49,7 @@ This trait contains methods such as `updateProfilePhoto`, `getProfilePhotoUrlAtt

The `updateProfilePhoto` method is the primary method used to store profile photos and is called by the `UpdateUserProfileInformation` action.


:::tip Laravel Vapor

By default, the `s3` disk will be used automatically when your application is running within [Laravel Vapor](https://vapor.laravel.com).
Expand Down