Sunday, December 6, 2020

Enabling Profile Photos in laravel8 JetStream

Enabling Profile Photos in laravel8 JetStream




If you wish to allow users to upload custom profile photos, you must enable the feature in your config/jetstream.php configuration file. To enable the feature, simply uncomment the feature entry from the features configuration item within this file:

'features' => [
Features::profilePhotos(),
Features::api(),
Features::teams(),
],

In addition, you should execute the storage:link Artisan command. For information regarding this command, 

No comments:

Post a Comment

GitHub repository using Git Bash command

  To add a project to a GitHub repository using Git Bash command line, you can follow these steps: Create a new repository on GitHub by logg...