├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ ├── DuplicateVoteException.php │ ├── Handler.php │ └── VoteNotFoundException.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── CategoryController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── IdeaController.php │ │ ├── StatusController.php │ │ └── VoteController.php │ ├── Kernel.php │ ├── Livewire │ │ ├── AddComment.php │ │ ├── CommentNotifications.php │ │ ├── CreateIdea.php │ │ ├── DeleteComment.php │ │ ├── DeleteIdea.php │ │ ├── EditComment.php │ │ ├── EditIdea.php │ │ ├── IdeaComment.php │ │ ├── IdeaComments.php │ │ ├── IdeaIndex.php │ │ ├── IdeaShow.php │ │ ├── IdeasIndex.php │ │ ├── MarkCommentAsNotSpam.php │ │ ├── MarkCommentAsSpam.php │ │ ├── MarkIdeaAsNotSpam.php │ │ ├── MarkIdeaAsSpam.php │ │ ├── SetStatus.php │ │ ├── StatusFilters.php │ │ └── Traits │ │ │ └── WithAuthRedirects.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ └── Auth │ │ └── LoginRequest.php ├── Jobs │ └── NotifyAllVoters.php ├── Mail │ └── IdeaStatusUpdatedMailable.php ├── Models │ ├── Category.php │ ├── Comment.php │ ├── Idea.php │ ├── Status.php │ ├── User.php │ └── Vote.php ├── Notifications │ └── CommentAdded.php ├── Policies │ ├── CommentPolicy.php │ └── IdeaPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── HorizonServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── horizon.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── CommentFactory.php │ ├── IdeaFactory.php │ ├── StatusFactory.php │ ├── UserFactory.php │ └── VoteFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_02_24_012947_create_statuses_table.php │ ├── 2021_02_25_012947_create_categories_table.php │ ├── 2021_02_26_012947_create_ideas_table.php │ ├── 2021_03_05_061517_create_votes_table.php │ ├── 2021_05_04_065809_create_comments_table.php │ └── 2021_05_26_024309_create_notifications_table.php └── seeders │ ├── CategorySeeder.php │ ├── CommentSeeder.php │ ├── DatabaseSeeder.php │ ├── IdeaSeeder.php │ ├── StatusSeeder.php │ └── VoteSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── css │ └── app.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img │ ├── logo.svg │ └── no-ideas.svg ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── site.webmanifest ├── vendor │ └── horizon │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── img │ │ ├── favicon.png │ │ ├── horizon.svg │ │ └── sprite.svg │ │ └── mix-manifest.json └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-card.blade.php │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── modal-confirm.blade.php │ ├── modals-container.blade.php │ ├── nav-link.blade.php │ ├── notification-success.blade.php │ └── responsive-nav-link.blade.php │ ├── dashboard.blade.php │ ├── emails │ ├── comment-added.blade.php │ └── idea-status-updated.blade.php │ ├── idea │ ├── index.blade.php │ └── show.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ └── navigation.blade.php │ ├── livewire │ ├── add-comment.blade.php │ ├── comment-notifications.blade.php │ ├── create-idea.blade.php │ ├── delete-comment.blade.php │ ├── delete-idea.blade.php │ ├── edit-comment.blade.php │ ├── edit-idea.blade.php │ ├── idea-comment.blade.php │ ├── idea-comments.blade.php │ ├── idea-index.blade.php │ ├── idea-show.blade.php │ ├── ideas-index.blade.php │ ├── mark-comment-as-not-spam.blade.php │ ├── mark-comment-as-spam.blade.php │ ├── mark-idea-as-not-spam.blade.php │ ├── mark-idea-as-spam.blade.php │ ├── set-status.blade.php │ └── status-filters.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── AdminSetStatusTest.php │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ ├── CommentNotificationsTest.php │ ├── Comments │ │ ├── AddCommentTest.php │ │ ├── CommentsSpamManagementTest.php │ │ ├── DeleteCommentTest.php │ │ ├── EditCommentTest.php │ │ └── ShowCommentsTest.php │ ├── CreateIdeaTest.php │ ├── DeleteIdeaTest.php │ ├── EditIdeaTest.php │ ├── Filters │ │ ├── CategoryFiltersTest.php │ │ ├── OtherFiltersTest.php │ │ ├── SearchFilterTest.php │ │ └── StatusFiltersTest.php │ ├── GravatarTest.php │ ├── ShowIdeasTest.php │ ├── SpamManagementTest.php │ ├── VoteIndexPageTest.php │ └── VoteShowPageTest.php ├── TestCase.php └── Unit │ ├── IdeaTest.php │ ├── Jobs │ └── NotifyAllVotersTest.php │ ├── StatusTest.php │ └── UserTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/DuplicateVoteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Exceptions/DuplicateVoteException.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Exceptions/VoteNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Exceptions/VoteNotFoundException.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/IdeaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/IdeaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/StatusController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/StatusController.php -------------------------------------------------------------------------------- /app/Http/Controllers/VoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Controllers/VoteController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Livewire/AddComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/AddComment.php -------------------------------------------------------------------------------- /app/Http/Livewire/CommentNotifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/CommentNotifications.php -------------------------------------------------------------------------------- /app/Http/Livewire/CreateIdea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/CreateIdea.php -------------------------------------------------------------------------------- /app/Http/Livewire/DeleteComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/DeleteComment.php -------------------------------------------------------------------------------- /app/Http/Livewire/DeleteIdea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/DeleteIdea.php -------------------------------------------------------------------------------- /app/Http/Livewire/EditComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/EditComment.php -------------------------------------------------------------------------------- /app/Http/Livewire/EditIdea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/EditIdea.php -------------------------------------------------------------------------------- /app/Http/Livewire/IdeaComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/IdeaComment.php -------------------------------------------------------------------------------- /app/Http/Livewire/IdeaComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/IdeaComments.php -------------------------------------------------------------------------------- /app/Http/Livewire/IdeaIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/IdeaIndex.php -------------------------------------------------------------------------------- /app/Http/Livewire/IdeaShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/IdeaShow.php -------------------------------------------------------------------------------- /app/Http/Livewire/IdeasIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/IdeasIndex.php -------------------------------------------------------------------------------- /app/Http/Livewire/MarkCommentAsNotSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/MarkCommentAsNotSpam.php -------------------------------------------------------------------------------- /app/Http/Livewire/MarkCommentAsSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/MarkCommentAsSpam.php -------------------------------------------------------------------------------- /app/Http/Livewire/MarkIdeaAsNotSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/MarkIdeaAsNotSpam.php -------------------------------------------------------------------------------- /app/Http/Livewire/MarkIdeaAsSpam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/MarkIdeaAsSpam.php -------------------------------------------------------------------------------- /app/Http/Livewire/SetStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/SetStatus.php -------------------------------------------------------------------------------- /app/Http/Livewire/StatusFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/StatusFilters.php -------------------------------------------------------------------------------- /app/Http/Livewire/Traits/WithAuthRedirects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Livewire/Traits/WithAuthRedirects.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Jobs/NotifyAllVoters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Jobs/NotifyAllVoters.php -------------------------------------------------------------------------------- /app/Mail/IdeaStatusUpdatedMailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Mail/IdeaStatusUpdatedMailable.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Idea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/Idea.php -------------------------------------------------------------------------------- /app/Models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/Status.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Models/Vote.php -------------------------------------------------------------------------------- /app/Notifications/CommentAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Notifications/CommentAdded.php -------------------------------------------------------------------------------- /app/Policies/CommentPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Policies/CommentPolicy.php -------------------------------------------------------------------------------- /app/Policies/IdeaPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Policies/IdeaPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/horizon.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/CommentFactory.php -------------------------------------------------------------------------------- /database/factories/IdeaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/IdeaFactory.php -------------------------------------------------------------------------------- /database/factories/StatusFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/StatusFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/factories/VoteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/factories/VoteFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/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/drehimself/lc-voting/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_24_012947_create_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_02_24_012947_create_statuses_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_25_012947_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_02_25_012947_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_02_26_012947_create_ideas_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_02_26_012947_create_ideas_table.php -------------------------------------------------------------------------------- /database/migrations/2021_03_05_061517_create_votes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_03_05_061517_create_votes_table.php -------------------------------------------------------------------------------- /database/migrations/2021_05_04_065809_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_05_04_065809_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2021_05_26_024309_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/migrations/2021_05_26_024309_create_notifications_table.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/CommentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/CommentSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/IdeaSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/IdeaSeeder.php -------------------------------------------------------------------------------- /database/seeders/StatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/StatusSeeder.php -------------------------------------------------------------------------------- /database/seeders/VoteSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/database/seeders/VoteSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/no-ideas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/img/no-ideas.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/vendor/horizon/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/app-dark.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/app.css -------------------------------------------------------------------------------- /public/vendor/horizon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/app.js -------------------------------------------------------------------------------- /public/vendor/horizon/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/img/favicon.png -------------------------------------------------------------------------------- /public/vendor/horizon/img/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/img/horizon.svg -------------------------------------------------------------------------------- /public/vendor/horizon/img/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/img/sprite.svg -------------------------------------------------------------------------------- /public/vendor/horizon/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/vendor/horizon/mix-manifest.json -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/auth-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/auth-validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal-confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/modal-confirm.blade.php -------------------------------------------------------------------------------- /resources/views/components/modals-container.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/modals-container.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/notification-success.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/notification-success.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/emails/comment-added.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/emails/comment-added.blade.php -------------------------------------------------------------------------------- /resources/views/emails/idea-status-updated.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/emails/idea-status-updated.blade.php -------------------------------------------------------------------------------- /resources/views/idea/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/idea/index.blade.php -------------------------------------------------------------------------------- /resources/views/idea/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/idea/show.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/add-comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/add-comment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/comment-notifications.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/comment-notifications.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/create-idea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/create-idea.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/delete-comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/delete-comment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/delete-idea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/delete-idea.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/edit-comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/edit-comment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/edit-idea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/edit-idea.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/idea-comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/idea-comment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/idea-comments.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/idea-comments.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/idea-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/idea-index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/idea-show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/idea-show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/ideas-index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/ideas-index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/mark-comment-as-not-spam.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/mark-comment-as-not-spam.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/mark-comment-as-spam.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/mark-comment-as-spam.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/mark-idea-as-not-spam.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/mark-idea-as-not-spam.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/mark-idea-as-spam.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/mark-idea-as-spam.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/set-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/set-status.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/status-filters.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/livewire/status-filters.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/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/drehimself/lc-voting/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AdminSetStatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/AdminSetStatusTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/CommentNotificationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/CommentNotificationsTest.php -------------------------------------------------------------------------------- /tests/Feature/Comments/AddCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Comments/AddCommentTest.php -------------------------------------------------------------------------------- /tests/Feature/Comments/CommentsSpamManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Comments/CommentsSpamManagementTest.php -------------------------------------------------------------------------------- /tests/Feature/Comments/DeleteCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Comments/DeleteCommentTest.php -------------------------------------------------------------------------------- /tests/Feature/Comments/EditCommentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Comments/EditCommentTest.php -------------------------------------------------------------------------------- /tests/Feature/Comments/ShowCommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Comments/ShowCommentsTest.php -------------------------------------------------------------------------------- /tests/Feature/CreateIdeaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/CreateIdeaTest.php -------------------------------------------------------------------------------- /tests/Feature/DeleteIdeaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/DeleteIdeaTest.php -------------------------------------------------------------------------------- /tests/Feature/EditIdeaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/EditIdeaTest.php -------------------------------------------------------------------------------- /tests/Feature/Filters/CategoryFiltersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Filters/CategoryFiltersTest.php -------------------------------------------------------------------------------- /tests/Feature/Filters/OtherFiltersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Filters/OtherFiltersTest.php -------------------------------------------------------------------------------- /tests/Feature/Filters/SearchFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Filters/SearchFilterTest.php -------------------------------------------------------------------------------- /tests/Feature/Filters/StatusFiltersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/Filters/StatusFiltersTest.php -------------------------------------------------------------------------------- /tests/Feature/GravatarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/GravatarTest.php -------------------------------------------------------------------------------- /tests/Feature/ShowIdeasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/ShowIdeasTest.php -------------------------------------------------------------------------------- /tests/Feature/SpamManagementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/SpamManagementTest.php -------------------------------------------------------------------------------- /tests/Feature/VoteIndexPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/VoteIndexPageTest.php -------------------------------------------------------------------------------- /tests/Feature/VoteShowPageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Feature/VoteShowPageTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/IdeaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Unit/IdeaTest.php -------------------------------------------------------------------------------- /tests/Unit/Jobs/NotifyAllVotersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Unit/Jobs/NotifyAllVotersTest.php -------------------------------------------------------------------------------- /tests/Unit/StatusTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Unit/StatusTest.php -------------------------------------------------------------------------------- /tests/Unit/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/tests/Unit/UserTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drehimself/lc-voting/HEAD/webpack.mix.js --------------------------------------------------------------------------------