├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ ├── DiscussionDestroyController.php │ │ ├── DiscussionShowController.php │ │ ├── DiscussionSolutionPatchController.php │ │ ├── DiscussionStoreController.php │ │ ├── ForumIndexController.php │ │ ├── MarkdownController.php │ │ ├── PostDestroyController.php │ │ ├── PostPatchController.php │ │ ├── PostStoreController.php │ │ └── ProfileController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ ├── QueryFilters │ │ ├── MentionedQueryFilter.php │ │ ├── MineQueryFilter.php │ │ ├── NoRepliesQueryFilter.php │ │ ├── ParticipatingQueryFilter.php │ │ ├── SolvedQueryFilter.php │ │ ├── TopicQueryFilter.php │ │ └── UnsolvedQueryFilter.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── DiscussionDestroyRequest.php │ │ ├── DiscussionSolutionPatchRequest.php │ │ ├── PostDestroyRequest.php │ │ ├── PostPatchRequest.php │ │ ├── PostStoreRequest.php │ │ ├── ProfileUpdateRequest.php │ │ └── StoreDiscussionRequest.php │ └── Resources │ │ ├── DateTimeResource.php │ │ ├── DiscussionResource.php │ │ ├── PostResource.php │ │ ├── PublicUserResource.php │ │ └── TopicResource.php ├── Models │ ├── Discussion.php │ ├── Post.php │ ├── Topic.php │ ├── User.php │ └── UserMention.php ├── Observers │ ├── PostObserver.php │ └── UserObserver.php ├── Policies │ ├── DiscussionPolicy.php │ └── PostPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── markdown.php ├── queue.php ├── sanctum.php ├── scout.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_05_11_094621_add_username_to_users_table.php │ ├── 2023_05_11_101156_create_topics_table.php │ ├── 2023_05_11_102454_create_discussions_table.php │ ├── 2023_05_11_104705_add_pinned_at_to_discussions_table.php │ ├── 2023_05_11_113615_create_posts_table.php │ ├── 2023_05_14_192702_add_solution_post_id_to_discussions_table.php │ └── 2023_05_14_212349_create_mentions_table.php └── seeders │ └── DatabaseSeeder.php ├── jsconfig.json ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── Components │ │ ├── ApplicationLogo.vue │ │ ├── Checkbox.vue │ │ ├── DangerButton.vue │ │ ├── Dropdown.vue │ │ ├── DropdownLink.vue │ │ ├── Forum │ │ │ ├── CreateDiscussionForm.vue │ │ │ ├── CreatePostForm.vue │ │ │ ├── Discussion.vue │ │ │ ├── FixedFormWrapper.vue │ │ │ ├── MarkdownShortcutToolbar.vue │ │ │ ├── Navigation.vue │ │ │ └── Post.vue │ │ ├── InputError.vue │ │ ├── InputLabel.vue │ │ ├── Modal.vue │ │ ├── NavLink.vue │ │ ├── Pagination.vue │ │ ├── PrimaryButton.vue │ │ ├── ResponsiveNavLink.vue │ │ ├── SecondaryButton.vue │ │ ├── Select.vue │ │ ├── Svg.vue │ │ ├── TextInput.vue │ │ └── Textarea.vue │ ├── Composables │ │ ├── useCreateDiscussion.js │ │ ├── useCreatePost.js │ │ └── useMentionSearch.js │ ├── Layouts │ │ ├── AuthenticatedLayout.vue │ │ ├── ForumLayout.vue │ │ └── GuestLayout.vue │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ └── VerifyEmail.vue │ │ ├── Dashboard.vue │ │ ├── Forum │ │ │ ├── Index.vue │ │ │ └── Show.vue │ │ ├── Profile │ │ │ ├── Edit.vue │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ └── UpdateProfileInformationForm.vue │ │ └── Welcome.vue │ ├── app.js │ ├── bootstrap.js │ └── ssr.js ├── svg │ ├── icon-at.svg │ ├── icon-bold.svg │ ├── icon-close.svg │ ├── icon-code.svg │ ├── icon-italic.svg │ └── icon-link.svg └── views │ ├── app.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DiscussionDestroyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/DiscussionDestroyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DiscussionShowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/DiscussionShowController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DiscussionSolutionPatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/DiscussionSolutionPatchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/DiscussionStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/DiscussionStoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ForumIndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/ForumIndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/MarkdownController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/MarkdownController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PostDestroyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/PostDestroyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PostPatchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/PostPatchController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PostStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/PostStoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/MentionedQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/MentionedQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/MineQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/MineQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/NoRepliesQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/NoRepliesQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/ParticipatingQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/ParticipatingQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/SolvedQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/SolvedQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/TopicQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/TopicQueryFilter.php -------------------------------------------------------------------------------- /app/Http/QueryFilters/UnsolvedQueryFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/QueryFilters/UnsolvedQueryFilter.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DiscussionDestroyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/DiscussionDestroyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DiscussionSolutionPatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/DiscussionSolutionPatchRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PostDestroyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/PostDestroyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PostPatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/PostPatchRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PostStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/PostStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreDiscussionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Requests/StoreDiscussionRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/DateTimeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Resources/DateTimeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/DiscussionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Resources/DiscussionResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Resources/PostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PublicUserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Resources/PublicUserResource.php -------------------------------------------------------------------------------- /app/Http/Resources/TopicResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Http/Resources/TopicResource.php -------------------------------------------------------------------------------- /app/Models/Discussion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Models/Discussion.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Models/Topic.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserMention.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Models/UserMention.php -------------------------------------------------------------------------------- /app/Observers/PostObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Observers/PostObserver.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/DiscussionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Policies/DiscussionPolicy.php -------------------------------------------------------------------------------- /app/Policies/PostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Policies/PostPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/markdown.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/scout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/scout.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_11_094621_add_username_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_11_094621_add_username_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_11_101156_create_topics_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_11_101156_create_topics_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_11_102454_create_discussions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_11_102454_create_discussions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_11_104705_add_pinned_at_to_discussions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_11_104705_add_pinned_at_to_discussions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_11_113615_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_11_113615_create_posts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_14_192702_add_solution_post_id_to_discussions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_14_192702_add_solution_post_id_to_discussions_table.php -------------------------------------------------------------------------------- /database/migrations/2023_05_14_212349_create_mentions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/migrations/2023_05_14_212349_create_mentions_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/ApplicationLogo.vue -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Checkbox.vue -------------------------------------------------------------------------------- /resources/js/Components/DangerButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/DangerButton.vue -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Dropdown.vue -------------------------------------------------------------------------------- /resources/js/Components/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/DropdownLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/CreateDiscussionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/CreateDiscussionForm.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/CreatePostForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/CreatePostForm.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/Discussion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/Discussion.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/FixedFormWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/FixedFormWrapper.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/MarkdownShortcutToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/MarkdownShortcutToolbar.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/Navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/Navigation.vue -------------------------------------------------------------------------------- /resources/js/Components/Forum/Post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Forum/Post.vue -------------------------------------------------------------------------------- /resources/js/Components/InputError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/InputError.vue -------------------------------------------------------------------------------- /resources/js/Components/InputLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/InputLabel.vue -------------------------------------------------------------------------------- /resources/js/Components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Modal.vue -------------------------------------------------------------------------------- /resources/js/Components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/NavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Pagination.vue -------------------------------------------------------------------------------- /resources/js/Components/PrimaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/PrimaryButton.vue -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/ResponsiveNavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/SecondaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/SecondaryButton.vue -------------------------------------------------------------------------------- /resources/js/Components/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Select.vue -------------------------------------------------------------------------------- /resources/js/Components/Svg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Svg.vue -------------------------------------------------------------------------------- /resources/js/Components/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/TextInput.vue -------------------------------------------------------------------------------- /resources/js/Components/Textarea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Components/Textarea.vue -------------------------------------------------------------------------------- /resources/js/Composables/useCreateDiscussion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Composables/useCreateDiscussion.js -------------------------------------------------------------------------------- /resources/js/Composables/useCreatePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Composables/useCreatePost.js -------------------------------------------------------------------------------- /resources/js/Composables/useMentionSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Composables/useMentionSearch.js -------------------------------------------------------------------------------- /resources/js/Layouts/AuthenticatedLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Layouts/AuthenticatedLayout.vue -------------------------------------------------------------------------------- /resources/js/Layouts/ForumLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Layouts/ForumLayout.vue -------------------------------------------------------------------------------- /resources/js/Layouts/GuestLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Layouts/GuestLayout.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/Pages/Forum/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Forum/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Forum/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Forum/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Profile/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/DeleteUserForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Profile/Partials/DeleteUserForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/Pages/Welcome.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/js/ssr.js -------------------------------------------------------------------------------- /resources/svg/icon-at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-at.svg -------------------------------------------------------------------------------- /resources/svg/icon-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-bold.svg -------------------------------------------------------------------------------- /resources/svg/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-close.svg -------------------------------------------------------------------------------- /resources/svg/icon-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-code.svg -------------------------------------------------------------------------------- /resources/svg/icon-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-italic.svg -------------------------------------------------------------------------------- /resources/svg/icon-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/svg/icon-link.svg -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecourse/build-a-forum-with-inertia/HEAD/vite.config.js --------------------------------------------------------------------------------