├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ └── DeleteUser.php ├── Console │ └── Kernel.php ├── Events │ ├── ReplyWasCreated.php │ └── ThreadWasCreated.php ├── Exceptions │ ├── CannotLikeItem.php │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── CategoryController.php │ │ │ ├── DashboardController.php │ │ │ └── TagController.php │ │ ├── Controller.php │ │ ├── Dashboard │ │ │ └── NotificationController.php │ │ ├── PageController.php │ │ └── Pages │ │ │ ├── FollowController.php │ │ │ ├── HomeController.php │ │ │ ├── ProfileController.php │ │ │ ├── ReplyController.php │ │ │ ├── TagController.php │ │ │ └── ThreadController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── LikeReply.php │ │ ├── LikeThread.php │ │ ├── Notifications │ │ │ ├── Count.php │ │ │ ├── Index.php │ │ │ └── Indicator.php │ │ ├── Reply │ │ │ ├── Delete.php │ │ │ └── Update.php │ │ └── Thread │ │ │ └── Delete.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── IsAdmin.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── CreateReplyRequest.php │ │ └── ThreadStoreRequest.php │ └── Responses │ │ └── LoginResponse.php ├── Jobs │ ├── CreateReply.php │ ├── CreateThread.php │ ├── LikeReplyJob.php │ ├── LikeThreadJob.php │ ├── SubscribeToSubscriptionAble.php │ ├── UnlikeReplyJob.php │ ├── UnlikeThreadJob.php │ ├── UnsubscribeFromSubscriptionAble.php │ └── UpdateThread.php ├── Listeners │ ├── AwardPointsForCreatingReply.php │ ├── AwardPointsForCreatingThread.php │ ├── sendNewReplyNotification.php │ └── sendNewThreadNotification.php ├── Mail │ ├── NewReplyEmail.php │ └── NewThreadEmail.php ├── Models │ ├── Category.php │ ├── Like.php │ ├── Point.php │ ├── PointAble.php │ ├── Reply.php │ ├── ReplyAble.php │ ├── Subscription.php │ ├── SubscriptionAble.php │ ├── Tag.php │ ├── Thread.php │ └── User.php ├── Notifications │ ├── NewReplyNotification.php │ └── NewThreadNotification.php ├── Policies │ ├── NotificationPolicy.php │ ├── ReplyPolicy.php │ ├── ThreadPolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── RouteServiceProvider.php ├── Traits │ ├── HasAuthor.php │ ├── HasFollows.php │ ├── HasLikes.php │ ├── HasPoints.php │ ├── HasReplies.php │ ├── HasSubscriptions.php │ ├── HasTags.php │ ├── HasTimestamps.php │ └── ModelHelpers.php └── View │ └── Components │ ├── AppLayout.php │ ├── BaseLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── blade-icons.php ├── blade-ui-kit.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── eloquent-viewable.php ├── filesystems.php ├── fortify.php ├── hashing.php ├── jetstream.php ├── logging.php ├── mail.php ├── points.php ├── purifier.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── LikeFactory.php │ ├── ReplyFactory.php │ ├── ThreadFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_06_07_082644_create_sessions_table.php │ ├── 2021_06_16_000001_create_categories_table.php │ ├── 2021_06_16_000002_create_threads_table.php │ ├── 2021_06_16_083555_create_likes_table.php │ ├── 2021_06_16_083623_create_replies_table.php │ ├── 2021_06_16_083652_create_subscriptions_table.php │ ├── 2021_06_16_083710_create_tags_table.php │ ├── 2021_06_18_102730_create_taggables_table.php │ ├── 2021_07_20_103728_create_notifications_table.php │ ├── 2021_08_05_205848_create_follows_table.php │ ├── 2021_08_11_233332_create_points_table.php │ └── 2021_09_03_223043_create_views_table.php └── seeders │ ├── CategoriesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── NotificationSeeder.php │ ├── TagsTableSeeder.php │ ├── ThreadsTableSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ └── choices.css ├── favicon.ico ├── img │ ├── avatars │ │ ├── person1.jpg │ │ └── person4.jpg │ ├── bg │ │ └── bg-header.jpg │ └── logo │ │ └── logo.png ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── admin │ ├── categories │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard │ │ └── index.blade.php │ ├── tags │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── threads │ │ └── index.blade.php │ └── users │ │ └── index.blade.php │ ├── api │ ├── api-token-manager.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── alerts │ │ └── main.blade.php │ ├── buttons │ │ ├── primary.blade.php │ │ └── secondary.blade.php │ ├── dashboard │ │ ├── nav.blade.php │ │ └── sidenav.blade.php │ ├── form │ │ ├── error.blade.php │ │ ├── input.blade.php │ │ └── label.blade.php │ ├── links │ │ ├── danger.blade.php │ │ ├── main.blade.php │ │ ├── primary.blade.php │ │ └── secondary.blade.php │ ├── logos │ │ └── main.blade.php │ ├── partials │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── nav.blade.php │ │ └── sidenav.blade.php │ ├── sidenav │ │ ├── link.blade.php │ │ ├── menu.blade.php │ │ └── title.blade.php │ ├── table │ │ ├── data.blade.php │ │ └── head.blade.php │ ├── thread.blade.php │ └── user │ │ └── avatar.blade.php │ ├── dashboard.blade.php │ ├── dashboard │ └── notifications │ │ └── index.blade.php │ ├── emails │ ├── new_reply.blade.php │ └── new_thread.blade.php │ ├── home │ └── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── base.blade.php │ └── guest.blade.php │ ├── livewire │ ├── like-reply.blade.php │ ├── like-thread.blade.php │ ├── notifications │ │ ├── count.blade.php │ │ ├── index.blade.php │ │ └── indicator.blade.php │ ├── reply │ │ ├── delete.blade.php │ │ └── update.blade.php │ └── thread │ │ ├── delete.blade.php │ │ └── update.blade.php │ ├── navigation-menu.blade.php │ ├── pages │ ├── profiles │ │ └── show.blade.php │ ├── tags │ │ └── index.blade.php │ └── threads │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── policy.blade.php │ ├── profile │ ├── delete-user-form.blade.php │ ├── logout-other-browser-sessions-form.blade.php │ ├── show.blade.php │ ├── two-factor-authentication-form.blade.php │ ├── update-password-form.blade.php │ └── update-profile-information-form.blade.php │ ├── terms.blade.php │ ├── vendor │ └── jetstream │ │ ├── components │ │ ├── action-message.blade.php │ │ ├── action-section.blade.php │ │ ├── application-logo.blade.php │ │ ├── application-mark.blade.php │ │ ├── authentication-card-logo.blade.php │ │ ├── authentication-card.blade.php │ │ ├── banner.blade.php │ │ ├── button.blade.php │ │ ├── checkbox.blade.php │ │ ├── confirmation-modal.blade.php │ │ ├── confirms-password.blade.php │ │ ├── danger-button.blade.php │ │ ├── dialog-modal.blade.php │ │ ├── dropdown-link.blade.php │ │ ├── dropdown.blade.php │ │ ├── form-section.blade.php │ │ ├── input-error.blade.php │ │ ├── input.blade.php │ │ ├── label.blade.php │ │ ├── modal.blade.php │ │ ├── nav-link.blade.php │ │ ├── responsive-nav-link.blade.php │ │ ├── secondary-button.blade.php │ │ ├── section-border.blade.php │ │ ├── section-title.blade.php │ │ ├── switchable-team.blade.php │ │ ├── validation-errors.blade.php │ │ └── welcome.blade.php │ │ └── mail │ │ └── team-invitation.blade.php │ └── welcome.blade.php ├── routes ├── admin.php ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── ApiTokenPermissionsTest.php │ ├── AuthenticationTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── ProfileInformationTest.php │ ├── RegistrationTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ └── UpdatePasswordTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/README.md -------------------------------------------------------------------------------- /app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /app/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /app/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/ReplyWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Events/ReplyWasCreated.php -------------------------------------------------------------------------------- /app/Events/ThreadWasCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Events/ThreadWasCreated.php -------------------------------------------------------------------------------- /app/Exceptions/CannotLikeItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Exceptions/CannotLikeItem.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Admin/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Admin/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Dashboard/NotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Dashboard/NotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/FollowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/FollowController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/ReplyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/ReplyController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/TagController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/TagController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Pages/ThreadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Controllers/Pages/ThreadController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/LikeReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/LikeReply.php -------------------------------------------------------------------------------- /app/Http/Livewire/LikeThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/LikeThread.php -------------------------------------------------------------------------------- /app/Http/Livewire/Notifications/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Notifications/Count.php -------------------------------------------------------------------------------- /app/Http/Livewire/Notifications/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Notifications/Index.php -------------------------------------------------------------------------------- /app/Http/Livewire/Notifications/Indicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Notifications/Indicator.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reply/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Reply/Delete.php -------------------------------------------------------------------------------- /app/Http/Livewire/Reply/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Reply/Update.php -------------------------------------------------------------------------------- /app/Http/Livewire/Thread/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Livewire/Thread/Delete.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/IsAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateReplyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Requests/CreateReplyRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ThreadStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Requests/ThreadStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Responses/LoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Http/Responses/LoginResponse.php -------------------------------------------------------------------------------- /app/Jobs/CreateReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/CreateReply.php -------------------------------------------------------------------------------- /app/Jobs/CreateThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/CreateThread.php -------------------------------------------------------------------------------- /app/Jobs/LikeReplyJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/LikeReplyJob.php -------------------------------------------------------------------------------- /app/Jobs/LikeThreadJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/LikeThreadJob.php -------------------------------------------------------------------------------- /app/Jobs/SubscribeToSubscriptionAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/SubscribeToSubscriptionAble.php -------------------------------------------------------------------------------- /app/Jobs/UnlikeReplyJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/UnlikeReplyJob.php -------------------------------------------------------------------------------- /app/Jobs/UnlikeThreadJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/UnlikeThreadJob.php -------------------------------------------------------------------------------- /app/Jobs/UnsubscribeFromSubscriptionAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/UnsubscribeFromSubscriptionAble.php -------------------------------------------------------------------------------- /app/Jobs/UpdateThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Jobs/UpdateThread.php -------------------------------------------------------------------------------- /app/Listeners/AwardPointsForCreatingReply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Listeners/AwardPointsForCreatingReply.php -------------------------------------------------------------------------------- /app/Listeners/AwardPointsForCreatingThread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Listeners/AwardPointsForCreatingThread.php -------------------------------------------------------------------------------- /app/Listeners/sendNewReplyNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Listeners/sendNewReplyNotification.php -------------------------------------------------------------------------------- /app/Listeners/sendNewThreadNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Listeners/sendNewThreadNotification.php -------------------------------------------------------------------------------- /app/Mail/NewReplyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Mail/NewReplyEmail.php -------------------------------------------------------------------------------- /app/Mail/NewThreadEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Mail/NewThreadEmail.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Like.php -------------------------------------------------------------------------------- /app/Models/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Point.php -------------------------------------------------------------------------------- /app/Models/PointAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/PointAble.php -------------------------------------------------------------------------------- /app/Models/Reply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Reply.php -------------------------------------------------------------------------------- /app/Models/ReplyAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/ReplyAble.php -------------------------------------------------------------------------------- /app/Models/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Subscription.php -------------------------------------------------------------------------------- /app/Models/SubscriptionAble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/SubscriptionAble.php -------------------------------------------------------------------------------- /app/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Tag.php -------------------------------------------------------------------------------- /app/Models/Thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/Thread.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/NewReplyNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Notifications/NewReplyNotification.php -------------------------------------------------------------------------------- /app/Notifications/NewThreadNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Notifications/NewThreadNotification.php -------------------------------------------------------------------------------- /app/Policies/NotificationPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Policies/NotificationPolicy.php -------------------------------------------------------------------------------- /app/Policies/ReplyPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Policies/ReplyPolicy.php -------------------------------------------------------------------------------- /app/Policies/ThreadPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Policies/ThreadPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Traits/HasAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasAuthor.php -------------------------------------------------------------------------------- /app/Traits/HasFollows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasFollows.php -------------------------------------------------------------------------------- /app/Traits/HasLikes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasLikes.php -------------------------------------------------------------------------------- /app/Traits/HasPoints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasPoints.php -------------------------------------------------------------------------------- /app/Traits/HasReplies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasReplies.php -------------------------------------------------------------------------------- /app/Traits/HasSubscriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasSubscriptions.php -------------------------------------------------------------------------------- /app/Traits/HasTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasTags.php -------------------------------------------------------------------------------- /app/Traits/HasTimestamps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/HasTimestamps.php -------------------------------------------------------------------------------- /app/Traits/ModelHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/Traits/ModelHelpers.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/BaseLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/View/Components/BaseLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/blade-icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/blade-icons.php -------------------------------------------------------------------------------- /config/blade-ui-kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/blade-ui-kit.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/database.php -------------------------------------------------------------------------------- /config/eloquent-viewable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/eloquent-viewable.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/fortify.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/points.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/points.php -------------------------------------------------------------------------------- /config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/purifier.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/LikeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/factories/LikeFactory.php -------------------------------------------------------------------------------- /database/factories/ReplyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/factories/ReplyFactory.php -------------------------------------------------------------------------------- /database/factories/ThreadFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/factories/ThreadFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/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/AngelJayMedia/forum-finished/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_07_082644_create_sessions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_07_082644_create_sessions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_000001_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_000001_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_000002_create_threads_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_000002_create_threads_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_083555_create_likes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_083555_create_likes_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_083623_create_replies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_083623_create_replies_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_083652_create_subscriptions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_083652_create_subscriptions_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_16_083710_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_16_083710_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2021_06_18_102730_create_taggables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_06_18_102730_create_taggables_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_20_103728_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_07_20_103728_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2021_08_05_205848_create_follows_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_08_05_205848_create_follows_table.php -------------------------------------------------------------------------------- /database/migrations/2021_08_11_233332_create_points_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_08_11_233332_create_points_table.php -------------------------------------------------------------------------------- /database/migrations/2021_09_03_223043_create_views_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/migrations/2021_09_03_223043_create_views_table.php -------------------------------------------------------------------------------- /database/seeders/CategoriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/CategoriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/NotificationSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/NotificationSeeder.php -------------------------------------------------------------------------------- /database/seeders/TagsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/TagsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/ThreadsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/ThreadsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/choices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/css/choices.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/avatars/person1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/img/avatars/person1.jpg -------------------------------------------------------------------------------- /public/img/avatars/person4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/img/avatars/person4.jpg -------------------------------------------------------------------------------- /public/img/bg/bg-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/img/bg/bg-header.jpg -------------------------------------------------------------------------------- /public/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/img/logo/logo.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/markdown/policy.md -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/markdown/terms.md -------------------------------------------------------------------------------- /resources/views/admin/categories/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/categories/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/categories/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/categories/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/categories/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/dashboard/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tags/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/tags/create.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tags/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/tags/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/tags/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/tags/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/threads/index.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/alerts/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/alerts/main.blade.php -------------------------------------------------------------------------------- /resources/views/components/buttons/primary.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/buttons/primary.blade.php -------------------------------------------------------------------------------- /resources/views/components/buttons/secondary.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/buttons/secondary.blade.php -------------------------------------------------------------------------------- /resources/views/components/dashboard/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/dashboard/nav.blade.php -------------------------------------------------------------------------------- /resources/views/components/dashboard/sidenav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/dashboard/sidenav.blade.php -------------------------------------------------------------------------------- /resources/views/components/form/error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/form/error.blade.php -------------------------------------------------------------------------------- /resources/views/components/form/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/form/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/form/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/form/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/links/danger.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/links/danger.blade.php -------------------------------------------------------------------------------- /resources/views/components/links/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/links/main.blade.php -------------------------------------------------------------------------------- /resources/views/components/links/primary.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/links/primary.blade.php -------------------------------------------------------------------------------- /resources/views/components/links/secondary.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/links/secondary.blade.php -------------------------------------------------------------------------------- /resources/views/components/logos/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/logos/main.blade.php -------------------------------------------------------------------------------- /resources/views/components/partials/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/partials/footer.blade.php -------------------------------------------------------------------------------- /resources/views/components/partials/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/partials/head.blade.php -------------------------------------------------------------------------------- /resources/views/components/partials/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/partials/nav.blade.php -------------------------------------------------------------------------------- /resources/views/components/partials/sidenav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/partials/sidenav.blade.php -------------------------------------------------------------------------------- /resources/views/components/sidenav/link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/sidenav/link.blade.php -------------------------------------------------------------------------------- /resources/views/components/sidenav/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/sidenav/menu.blade.php -------------------------------------------------------------------------------- /resources/views/components/sidenav/title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/sidenav/title.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/data.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/table/data.blade.php -------------------------------------------------------------------------------- /resources/views/components/table/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/table/head.blade.php -------------------------------------------------------------------------------- /resources/views/components/thread.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/thread.blade.php -------------------------------------------------------------------------------- /resources/views/components/user/avatar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/components/user/avatar.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard/notifications/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/dashboard/notifications/index.blade.php -------------------------------------------------------------------------------- /resources/views/emails/new_reply.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/emails/new_reply.blade.php -------------------------------------------------------------------------------- /resources/views/emails/new_thread.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/emails/new_thread.blade.php -------------------------------------------------------------------------------- /resources/views/home/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/home/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/base.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/layouts/base.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/like-reply.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/like-reply.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/like-thread.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/like-thread.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/notifications/count.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/notifications/count.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/notifications/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/notifications/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/notifications/indicator.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/notifications/indicator.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/reply/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/reply/delete.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/reply/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/reply/update.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/thread/delete.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/thread/delete.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/thread/update.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/livewire/thread/update.blade.php -------------------------------------------------------------------------------- /resources/views/navigation-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/navigation-menu.blade.php -------------------------------------------------------------------------------- /resources/views/pages/profiles/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/profiles/show.blade.php -------------------------------------------------------------------------------- /resources/views/pages/tags/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/tags/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/threads/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/threads/create.blade.php -------------------------------------------------------------------------------- /resources/views/pages/threads/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/threads/edit.blade.php -------------------------------------------------------------------------------- /resources/views/pages/threads/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/threads/index.blade.php -------------------------------------------------------------------------------- /resources/views/pages/threads/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/pages/threads/show.blade.php -------------------------------------------------------------------------------- /resources/views/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/policy.blade.php -------------------------------------------------------------------------------- /resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/terms.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/action-message.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/action-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/application-mark.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/authentication-card.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/banner.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/checkbox.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/confirms-password.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/form-section.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/section-border.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/section-title.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/switchable-team.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/components/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/jetstream/mail/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/vendor/jetstream/mail/team-invitation.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/routes/admin.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/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/AngelJayMedia/forum-finished/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/BrowserSessionsTest.php -------------------------------------------------------------------------------- /tests/Feature/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/CreateApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/DeleteAccountTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/ProfileInformationTest.php -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /tests/Feature/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Feature/UpdatePasswordTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngelJayMedia/forum-finished/HEAD/webpack.mix.js --------------------------------------------------------------------------------