|
1 |
| -artisan |
2 |
| -routes/console.php |
3 |
| -routes/channels.php |
4 |
| -routes/auth.php |
5 |
| -routes/web.php |
6 |
| -routes/api.php |
7 |
| -postcss.config.js |
8 |
| -SECURITY.md |
9 |
| -.editorconfig |
10 |
| -database/migrations/2014_10_12_100000_create_password_resets_table.php |
11 |
| -database/migrations/2014_10_12_000000_create_users_table.php |
12 |
| -database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php |
13 |
| -database/migrations/2019_08_19_000000_create_failed_jobs_table.php |
14 |
| -database/seeders/DatabaseSeeder.php |
15 |
| -database/factories/UserFactory.php |
16 |
| -config/services.php |
17 |
| -config/cache.php |
18 |
| -config/auth.php |
19 |
| -config/tinker.php |
| 1 | +.styleci.yml |
| 2 | +config/logging.php |
| 3 | +config/shop.php |
20 | 4 | config/app.php
|
21 |
| -config/database.php |
22 | 5 | config/mail.php
|
23 |
| -config/sanctum.php |
| 6 | +config/broadcasting.php |
| 7 | +config/tinker.php |
| 8 | +config/services.php |
| 9 | +config/cors.php |
| 10 | +config/hashing.php |
| 11 | +config/auth.php |
24 | 12 | config/queue.php
|
25 | 13 | config/filesystems.php
|
| 14 | +config/flare.php |
| 15 | +config/cache.php |
| 16 | +config/database.php |
| 17 | +config/sanctum.php |
| 18 | +config/ignition.php |
26 | 19 | config/session.php
|
27 |
| -config/hashing.php |
28 |
| -config/cors.php |
29 | 20 | config/view.php
|
30 |
| -config/ignition.php |
31 |
| -config/flare.php |
32 |
| -config/shop.php |
33 |
| -config/logging.php |
34 |
| -config/broadcasting.php |
35 |
| -composer.json |
| 21 | +postcss.config.js |
| 22 | +tailwind.config.js |
36 | 23 | README.md
|
37 |
| -app/Http/Controllers/Auth/VerifyEmailController.php |
38 |
| -app/Http/Controllers/Auth/AuthenticatedSessionController.php |
39 |
| -app/Http/Controllers/Auth/EmailVerificationPromptController.php |
40 |
| -app/Http/Controllers/Auth/EmailVerificationNotificationController.php |
41 |
| -app/Http/Controllers/Auth/ConfirmablePasswordController.php |
42 |
| -app/Http/Controllers/Auth/NewPasswordController.php |
43 |
| -app/Http/Controllers/Auth/PasswordResetLinkController.php |
44 |
| -app/Http/Controllers/Auth/PasswordController.php |
45 |
| -app/Http/Controllers/Auth/RegisteredUserController.php |
46 |
| -app/Http/Controllers/Controller.php |
47 |
| -app/Http/Controllers/ProfileController.php |
48 |
| -app/Http/Middleware/TrustHosts.php |
49 |
| -app/Http/Middleware/EncryptCookies.php |
50 |
| -app/Http/Middleware/Authenticate.php |
51 |
| -app/Http/Middleware/TrimStrings.php |
52 |
| -app/Http/Middleware/VerifyCsrfToken.php |
53 |
| -app/Http/Middleware/SetLocale.php |
54 |
| -app/Http/Middleware/EnsureEmailIsVerified.php |
55 |
| -app/Http/Middleware/PreventRequestsDuringMaintenance.php |
56 |
| -app/Http/Middleware/TrustProxies.php |
57 |
| -app/Http/Middleware/RedirectIfAuthenticated.php |
58 |
| -app/Http/Requests/Auth/LoginRequest.php |
59 |
| -app/Http/Requests/ProfileUpdateRequest.php |
60 |
| -app/Http/Kernel.php |
61 |
| -app/Console/Kernel.php |
62 |
| -app/View/Components/GuestLayout.php |
63 |
| -app/View/Components/AppLayout.php |
64 |
| -app/Models/User.php |
65 |
| -app/Composer.php |
66 |
| -app/Exceptions/Handler.php |
67 |
| -app/Providers/BroadcastServiceProvider.php |
68 |
| -app/Providers/RouteServiceProvider.php |
69 |
| -app/Providers/AuthServiceProvider.php |
70 |
| -app/Providers/AppServiceProvider.php |
71 |
| -app/Providers/EventServiceProvider.php |
72 |
| -public/robots.txt |
73 |
| -public/js/app.js |
74 |
| -public/index.php |
75 |
| -public/.htaccess |
| 24 | +.gitattributes |
| 25 | +package-lock.json |
| 26 | +phpunit.xml |
76 | 27 | public/mix-manifest.json
|
| 28 | +public/js/app.js |
77 | 29 | public/build/assets/app-c0da5701.js
|
78 | 30 | public/build/manifest.json
|
79 |
| -phpunit.xml |
80 |
| -resources/js/app.js |
81 |
| -resources/js/bootstrap.js |
82 |
| -resources/views/dashboard.blade.php |
| 31 | +public/robots.txt |
| 32 | +public/.htaccess |
| 33 | +public/index.php |
| 34 | +tests/Feature/Auth/AuthenticationTest.php |
| 35 | +tests/Feature/Auth/RegistrationTest.php |
| 36 | +tests/Feature/Auth/EmailVerificationTest.php |
| 37 | +tests/Feature/Auth/PasswordUpdateTest.php |
| 38 | +tests/Feature/Auth/PasswordResetTest.php |
| 39 | +tests/Feature/Auth/PasswordConfirmationTest.php |
| 40 | +tests/Feature/ExampleTest.php |
| 41 | +tests/Feature/ProfileTest.php |
| 42 | +tests/Unit/ExampleTest.php |
| 43 | +tests/TestCase.php |
| 44 | +tests/CreatesApplication.php |
| 45 | +bootstrap/app.php |
| 46 | +resources/views/auth/reset-password.blade.php |
83 | 47 | resources/views/auth/forgot-password.blade.php
|
84 |
| -resources/views/auth/verify-email.blade.php |
85 | 48 | resources/views/auth/confirm-password.blade.php
|
86 | 49 | resources/views/auth/register.blade.php
|
87 |
| -resources/views/auth/reset-password.blade.php |
88 | 50 | resources/views/auth/login.blade.php
|
89 |
| -resources/views/welcome.blade.php |
90 |
| -resources/views/profile/partials/delete-user-form.blade.php |
91 |
| -resources/views/profile/partials/update-profile-information-form.blade.php |
92 |
| -resources/views/profile/partials/update-password-form.blade.php |
93 |
| -resources/views/profile/edit.blade.php |
| 51 | +resources/views/auth/verify-email.blade.php |
| 52 | +resources/views/dashboard.blade.php |
| 53 | +resources/views/errors/403.blade.php |
| 54 | +resources/views/errors/500.blade.php |
| 55 | +resources/views/errors/401.blade.php |
| 56 | +resources/views/errors/404.blade.php |
| 57 | +resources/views/errors/minimal.blade.php |
| 58 | +resources/views/errors/429.blade.php |
| 59 | +resources/views/errors/layout.blade.php |
| 60 | +resources/views/errors/503.blade.php |
| 61 | +resources/views/errors/419.blade.php |
94 | 62 | resources/views/components/dropdown.blade.php
|
95 |
| -resources/views/components/input-error.blade.php |
96 |
| -resources/views/components/button.blade.php |
97 |
| -resources/views/components/input.blade.php |
98 | 63 | resources/views/components/application-logo.blade.php
|
| 64 | +resources/views/components/primary-button.blade.php |
| 65 | +resources/views/components/dropdown-link.blade.php |
| 66 | +resources/views/components/modal.blade.php |
99 | 67 | resources/views/components/auth-card.blade.php
|
100 |
| -resources/views/components/secondary-button.blade.php |
101 | 68 | resources/views/components/danger-button.blade.php
|
102 |
| -resources/views/components/auth-validation-errors.blade.php |
103 |
| -resources/views/components/label.blade.php |
104 |
| -resources/views/components/modal.blade.php |
105 |
| -resources/views/components/responsive-nav-link.blade.php |
106 |
| -resources/views/components/dropdown-link.blade.php |
107 |
| -resources/views/components/text-input.blade.php |
108 |
| -resources/views/components/primary-button.blade.php |
| 69 | +resources/views/components/auth-session-status.blade.php |
| 70 | +resources/views/components/secondary-button.blade.php |
109 | 71 | resources/views/components/nav-link.blade.php
|
| 72 | +resources/views/components/input.blade.php |
| 73 | +resources/views/components/responsive-nav-link.blade.php |
| 74 | +resources/views/components/auth-validation-errors.blade.php |
110 | 75 | resources/views/components/input-label.blade.php
|
111 |
| -resources/views/components/auth-session-status.blade.php |
112 |
| -resources/views/vendor/mail/html/button.blade.php |
113 |
| -resources/views/vendor/mail/html/footer.blade.php |
114 |
| -resources/views/vendor/mail/html/table.blade.php |
115 |
| -resources/views/vendor/mail/html/subcopy.blade.php |
116 |
| -resources/views/vendor/mail/html/layout.blade.php |
117 |
| -resources/views/vendor/mail/html/panel.blade.php |
| 76 | +resources/views/components/input-error.blade.php |
| 77 | +resources/views/components/text-input.blade.php |
| 78 | +resources/views/components/label.blade.php |
| 79 | +resources/views/components/button.blade.php |
| 80 | +resources/views/layouts/navigation.blade.php |
| 81 | +resources/views/layouts/guest.blade.php |
| 82 | +resources/views/layouts/app.blade.php |
| 83 | +resources/views/profile/edit.blade.php |
| 84 | +resources/views/profile/partials/update-password-form.blade.php |
| 85 | +resources/views/profile/partials/delete-user-form.blade.php |
| 86 | +resources/views/profile/partials/update-profile-information-form.blade.php |
| 87 | +resources/views/vendor/pagination/bootstrap-4.blade.php |
| 88 | +resources/views/vendor/pagination/semantic-ui.blade.php |
| 89 | +resources/views/vendor/pagination/tailwind.blade.php |
| 90 | +resources/views/vendor/pagination/simple-bootstrap-4.blade.php |
| 91 | +resources/views/vendor/pagination/bootstrap-5.blade.php |
| 92 | +resources/views/vendor/pagination/simple-bootstrap-5.blade.php |
| 93 | +resources/views/vendor/pagination/simple-default.blade.php |
| 94 | +resources/views/vendor/pagination/default.blade.php |
| 95 | +resources/views/vendor/pagination/simple-tailwind.blade.php |
118 | 96 | resources/views/vendor/mail/html/header.blade.php
|
| 97 | +resources/views/vendor/mail/html/panel.blade.php |
| 98 | +resources/views/vendor/mail/html/layout.blade.php |
| 99 | +resources/views/vendor/mail/html/table.blade.php |
119 | 100 | resources/views/vendor/mail/html/message.blade.php
|
120 |
| -resources/views/vendor/mail/text/button.blade.php |
121 |
| -resources/views/vendor/mail/text/footer.blade.php |
122 |
| -resources/views/vendor/mail/text/table.blade.php |
123 |
| -resources/views/vendor/mail/text/subcopy.blade.php |
124 |
| -resources/views/vendor/mail/text/layout.blade.php |
125 |
| -resources/views/vendor/mail/text/panel.blade.php |
| 101 | +resources/views/vendor/mail/html/subcopy.blade.php |
| 102 | +resources/views/vendor/mail/html/footer.blade.php |
| 103 | +resources/views/vendor/mail/html/button.blade.php |
126 | 104 | resources/views/vendor/mail/text/header.blade.php
|
| 105 | +resources/views/vendor/mail/text/panel.blade.php |
| 106 | +resources/views/vendor/mail/text/layout.blade.php |
| 107 | +resources/views/vendor/mail/text/table.blade.php |
127 | 108 | resources/views/vendor/mail/text/message.blade.php
|
| 109 | +resources/views/vendor/mail/text/subcopy.blade.php |
| 110 | +resources/views/vendor/mail/text/footer.blade.php |
| 111 | +resources/views/vendor/mail/text/button.blade.php |
128 | 112 | resources/views/vendor/notifications/email.blade.php
|
129 |
| -resources/views/vendor/pagination/simple-bootstrap-5.blade.php |
130 |
| -resources/views/vendor/pagination/simple-tailwind.blade.php |
131 |
| -resources/views/vendor/pagination/bootstrap-4.blade.php |
132 |
| -resources/views/vendor/pagination/tailwind.blade.php |
133 |
| -resources/views/vendor/pagination/simple-default.blade.php |
134 |
| -resources/views/vendor/pagination/default.blade.php |
135 |
| -resources/views/vendor/pagination/bootstrap-5.blade.php |
136 |
| -resources/views/vendor/pagination/simple-bootstrap-4.blade.php |
137 |
| -resources/views/vendor/pagination/semantic-ui.blade.php |
138 |
| -resources/views/errors/404.blade.php |
139 |
| -resources/views/errors/419.blade.php |
140 |
| -resources/views/errors/layout.blade.php |
141 |
| -resources/views/errors/minimal.blade.php |
142 |
| -resources/views/errors/403.blade.php |
143 |
| -resources/views/errors/500.blade.php |
144 |
| -resources/views/errors/401.blade.php |
145 |
| -resources/views/errors/429.blade.php |
146 |
| -resources/views/errors/503.blade.php |
147 |
| -resources/views/layouts/navigation.blade.php |
148 |
| -resources/views/layouts/app.blade.php |
149 |
| -resources/views/layouts/guest.blade.php |
150 |
| -.styleci.yml |
151 |
| -tailwind.config.js |
152 |
| -.gitattributes |
153 |
| -package.json |
154 |
| -vite.config.js |
| 113 | +resources/views/welcome.blade.php |
| 114 | +resources/js/app.js |
| 115 | +resources/js/bootstrap.js |
| 116 | +.env.example |
| 117 | +routes/web.php |
| 118 | +routes/api.php |
| 119 | +routes/auth.php |
| 120 | +routes/console.php |
| 121 | +routes/channels.php |
| 122 | +.editorconfig |
155 | 123 | docker-compose.yml
|
156 |
| -lang/en.json |
157 |
| -lang/en/auth.php |
158 |
| -lang/en/passwords.php |
159 | 124 | lang/en/validation.php
|
160 | 125 | lang/en/pagination.php
|
161 |
| -lang/de/auth.php |
162 |
| -lang/de/passwords.php |
| 126 | +lang/en/passwords.php |
| 127 | +lang/en/auth.php |
| 128 | +lang/en.json |
163 | 129 | lang/de/validation.php
|
164 | 130 | lang/de/pagination.php
|
165 |
| -package-lock.json |
| 131 | +lang/de/passwords.php |
| 132 | +lang/de/auth.php |
| 133 | +app/Providers/AppServiceProvider.php |
| 134 | +app/Providers/EventServiceProvider.php |
| 135 | +app/Providers/AuthServiceProvider.php |
| 136 | +app/Providers/BroadcastServiceProvider.php |
| 137 | +app/Providers/RouteServiceProvider.php |
| 138 | +app/Http/Requests/Auth/LoginRequest.php |
| 139 | +app/Http/Requests/ProfileUpdateRequest.php |
| 140 | +app/Http/Controllers/Auth/AuthenticatedSessionController.php |
| 141 | +app/Http/Controllers/Auth/EmailVerificationPromptController.php |
| 142 | +app/Http/Controllers/Auth/PasswordResetLinkController.php |
| 143 | +app/Http/Controllers/Auth/ConfirmablePasswordController.php |
| 144 | +app/Http/Controllers/Auth/VerifyEmailController.php |
| 145 | +app/Http/Controllers/Auth/RegisteredUserController.php |
| 146 | +app/Http/Controllers/Auth/EmailVerificationNotificationController.php |
| 147 | +app/Http/Controllers/Auth/PasswordController.php |
| 148 | +app/Http/Controllers/Auth/NewPasswordController.php |
| 149 | +app/Http/Controllers/Controller.php |
| 150 | +app/Http/Controllers/ProfileController.php |
| 151 | +app/Http/Kernel.php |
| 152 | +app/Http/Middleware/TrustProxies.php |
| 153 | +app/Http/Middleware/RedirectIfAuthenticated.php |
| 154 | +app/Http/Middleware/Authenticate.php |
| 155 | +app/Http/Middleware/VerifyCsrfToken.php |
| 156 | +app/Http/Middleware/TrustHosts.php |
| 157 | +app/Http/Middleware/PreventRequestsDuringMaintenance.php |
| 158 | +app/Http/Middleware/EncryptCookies.php |
| 159 | +app/Http/Middleware/EnsureEmailIsVerified.php |
| 160 | +app/Http/Middleware/SetLocale.php |
| 161 | +app/Http/Middleware/TrimStrings.php |
| 162 | +app/View/Components/AppLayout.php |
| 163 | +app/View/Components/GuestLayout.php |
| 164 | +app/Models/User.php |
| 165 | +app/Composer.php |
| 166 | +app/Exceptions/Handler.php |
| 167 | +app/Console/Kernel.php |
| 168 | +vite.config.js |
| 169 | +composer.json |
| 170 | +artisan |
| 171 | +database/seeders/DatabaseSeeder.php |
| 172 | +database/factories/UserFactory.php |
| 173 | +database/migrations/2014_10_12_000000_create_users_table.php |
| 174 | +database/migrations/2019_08_19_000000_create_failed_jobs_table.php |
| 175 | +database/migrations/2014_10_12_100000_create_password_resets_table.php |
| 176 | +database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php |
166 | 177 | LICENSE
|
| 178 | +package.json |
167 | 179 | packages/.gitkeep
|
168 |
| -bootstrap/app.php |
169 |
| -tests/TestCase.php |
170 |
| -tests/Feature/Auth/AuthenticationTest.php |
171 |
| -tests/Feature/Auth/PasswordConfirmationTest.php |
172 |
| -tests/Feature/Auth/RegistrationTest.php |
173 |
| -tests/Feature/Auth/EmailVerificationTest.php |
174 |
| -tests/Feature/Auth/PasswordResetTest.php |
175 |
| -tests/Feature/Auth/PasswordUpdateTest.php |
176 |
| -tests/Feature/ProfileTest.php |
177 |
| -tests/Feature/ExampleTest.php |
178 |
| -tests/Unit/ExampleTest.php |
179 |
| -tests/CreatesApplication.php |
180 |
| -.env.example |
| 180 | +SECURITY.md |
0 commit comments