jetstream.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. | Features
  18. |--------------------------------------------------------------------------
  19. |
  20. | Some of Jetstream's features are optional. You may disable the features
  21. | by removing them from this array. You're free to only remove some of
  22. | these features or you can even remove all of these if you need to.
  23. |
  24. */
  25. 'features' => [
  26. // Features::profilePhotos(),
  27. // Features::api(),
  28. // Features::teams(),
  29. ],
  30. ];