|
| 1 | +<?php |
| 2 | + |
| 3 | +use Laravel\Jetstream\Features; |
| 4 | + |
| 5 | +return [ |
| 6 | + |
| 7 | + /* |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | Jetstream Stack |
| 10 | + |-------------------------------------------------------------------------- |
| 11 | + | |
| 12 | + | This configuration value informs Jetstream which "stack" you will be |
| 13 | + | using for your application. In general, this value is set for you |
| 14 | + | during installation and will not need to be changed after that. |
| 15 | + | |
| 16 | + */ |
| 17 | + |
| 18 | + 'stack' => 'inertia', |
| 19 | + |
| 20 | + /* |
| 21 | + |-------------------------------------------------------------------------- |
| 22 | + | Jetstream Route Middleware |
| 23 | + |-------------------------------------------------------------------------- |
| 24 | + | |
| 25 | + | Here you may specify which middleware Jetstream will assign to the routes |
| 26 | + | that it registers with the application. When necessary, you may modify |
| 27 | + | these middleware; however, this default value is usually sufficient. |
| 28 | + | |
| 29 | + */ |
| 30 | + |
| 31 | + 'middleware' => ['web'], |
| 32 | + |
| 33 | + /* |
| 34 | + |-------------------------------------------------------------------------- |
| 35 | + | Jetstream Guard |
| 36 | + |-------------------------------------------------------------------------- |
| 37 | + | |
| 38 | + | Here you may specify the authentication guard Jetstream will use while |
| 39 | + | authenticating users. This value should correspond with one of your |
| 40 | + | guards that is already present in your "auth" configuration file. |
| 41 | + | |
| 42 | + */ |
| 43 | + |
| 44 | + 'guard' => 'sanctum', |
| 45 | + |
| 46 | + /* |
| 47 | + |-------------------------------------------------------------------------- |
| 48 | + | Features |
| 49 | + |-------------------------------------------------------------------------- |
| 50 | + | |
| 51 | + | Some of Jetstream's features are optional. You may disable the features |
| 52 | + | by removing them from this array. You're free to only remove some of |
| 53 | + | these features or you can even remove all of these if you need to. |
| 54 | + | |
| 55 | + */ |
| 56 | + |
| 57 | + 'features' => [ |
| 58 | + // Features::termsAndPrivacyPolicy(), |
| 59 | + // Features::profilePhotos(), |
| 60 | + // Features::api(), |
| 61 | + // Features::teams(['invitations' => true]), |
| 62 | + Features::accountDeletion(), |
| 63 | + ], |
| 64 | + |
| 65 | + /* |
| 66 | + |-------------------------------------------------------------------------- |
| 67 | + | Profile Photo Disk |
| 68 | + |-------------------------------------------------------------------------- |
| 69 | + | |
| 70 | + | This configuration value determines the default disk that will be used |
| 71 | + | when storing profile photos for your application's users. Typically |
| 72 | + | this will be the "public" disk but you may adjust this if needed. |
| 73 | + | |
| 74 | + */ |
| 75 | + |
| 76 | + 'profile_photo_disk' => 'public', |
| 77 | + |
| 78 | +]; |
0 commit comments