jetstream.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. use Laravel\Jetstream\Features;
  3. return [
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Jetstream Stack
  7. |--------------------------------------------------------------------------
  8. |
  9. | This configuration value informs Jetstream which "stack" you will be
  10. | using for your application. In general, this value is set for you
  11. | during installation and will not need to be changed after that.
  12. |
  13. */
  14. 'stack' => 'livewire',
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Jetstream Route Middleware
  18. |--------------------------------------------------------------------------
  19. |
  20. | Here you may specify which middleware Jetstream will assign to the routes
  21. | that it registers with the application. When necessary, you may modify
  22. | these middleware; however, this default value is usually sufficient.
  23. |
  24. */
  25. 'middleware' => ['web'],
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Features
  29. |--------------------------------------------------------------------------
  30. |
  31. | Some of Jetstream's features are optional. You may disable the features
  32. | by removing them from this array. You're free to only remove some of
  33. | these features or you can even remove all of these if you need to.
  34. |
  35. */
  36. 'features' => [
  37. Features::termsAndPrivacyPolicy(),
  38. Features::profilePhotos(),
  39. Features::api(),
  40. Features::teams(['invitations' => true]),
  41. Features::accountDeletion(),
  42. ],
  43. /*
  44. |--------------------------------------------------------------------------
  45. | Profile Photo Disk
  46. |--------------------------------------------------------------------------
  47. |
  48. | This configuration value determines the default disk that will be used
  49. | when storing profile photos for your application's users. Typically
  50. | this will be the "public" disk but you may adjust this if needed.
  51. |
  52. */
  53. 'profile_photo_disk' => 'public',
  54. ];