├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Backend │ │ │ ├── CommunityController.php │ │ │ ├── CommunityPostController.php │ │ │ └── PostVoteController.php │ │ ├── Controller.php │ │ └── Frontend │ │ │ ├── CommunityController.php │ │ │ ├── PostCommentController.php │ │ │ ├── PostController.php │ │ │ └── WelcomeController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── CommunityStoreRequest.php │ │ └── StorePostRequest.php │ └── Resources │ │ ├── CommentResource.php │ │ ├── CommunityPostResource.php │ │ ├── CommunityResource.php │ │ ├── PostResource.php │ │ └── PostShowResource.php ├── Models │ ├── Comment.php │ ├── Community.php │ ├── Post.php │ ├── PostVote.php │ └── User.php ├── Policies │ ├── CommunityPolicy.php │ └── PostPolicy.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── sluggable.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.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 │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_07_26_093542_create_communities_table.php │ ├── 2022_07_26_093551_create_posts_table.php │ ├── 2022_07_26_093605_create_comments_table.php │ └── 2022_07_26_093618_create_post_votes_table.php └── seeders │ └── DatabaseSeeder.php ├── jsconfig.json ├── lang └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── Components │ │ ├── ApplicationLogo.vue │ │ ├── Button.vue │ │ ├── Checkbox.vue │ │ ├── CommunityList.vue │ │ ├── DownVoteLink.vue │ │ ├── Dropdown.vue │ │ ├── DropdownLink.vue │ │ ├── Input.vue │ │ ├── InputError.vue │ │ ├── Label.vue │ │ ├── NavLink.vue │ │ ├── Pagination.vue │ │ ├── PostCard.vue │ │ ├── PostList.vue │ │ ├── PostVote.vue │ │ ├── ResponsiveNavLink.vue │ │ ├── UpVoteLink.vue │ │ └── ValidationErrors.vue │ ├── Layouts │ │ ├── Authenticated.vue │ │ └── Guest.vue │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.vue │ │ │ ├── ForgotPassword.vue │ │ │ ├── Login.vue │ │ │ ├── Register.vue │ │ │ ├── ResetPassword.vue │ │ │ └── VerifyEmail.vue │ │ ├── Communities │ │ │ ├── Create.vue │ │ │ ├── Edit.vue │ │ │ ├── Index.vue │ │ │ └── Posts │ │ │ │ ├── Create.vue │ │ │ │ └── Edit.vue │ │ ├── Dashboard.vue │ │ ├── Frontend │ │ │ ├── Communities │ │ │ │ └── Show.vue │ │ │ └── Posts │ │ │ │ └── Show.vue │ │ └── Welcome.vue │ ├── app.js │ └── bootstrap.js └── views │ ├── app.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ └── RegistrationTest.php │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/CommunityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Backend/CommunityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/CommunityPostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Backend/CommunityPostController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/PostVoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Backend/PostVoteController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/CommunityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Frontend/CommunityController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/PostCommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Frontend/PostCommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/PostController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Frontend/PostController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Frontend/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Controllers/Frontend/WelcomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CommunityStoreRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Requests/CommunityStoreRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StorePostRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Requests/StorePostRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/CommentResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Resources/CommentResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CommunityPostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Resources/CommunityPostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/CommunityResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Resources/CommunityResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Resources/PostResource.php -------------------------------------------------------------------------------- /app/Http/Resources/PostShowResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Http/Resources/PostShowResource.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Community.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Models/Community.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/PostVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Models/PostVote.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/CommunityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Policies/CommunityPolicy.php -------------------------------------------------------------------------------- /app/Policies/PostPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Policies/PostPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/session.php -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/sluggable.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/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/tonyxhepa/reddit-clone-with-laravel-inertiajs/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/tonyxhepa/reddit-clone-with-laravel-inertiajs/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/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_26_093542_create_communities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/migrations/2022_07_26_093542_create_communities_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_26_093551_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/migrations/2022_07_26_093551_create_posts_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_26_093605_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/migrations/2022_07_26_093605_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2022_07_26_093618_create_post_votes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/migrations/2022_07_26_093618_create_post_votes_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/ApplicationLogo.vue -------------------------------------------------------------------------------- /resources/js/Components/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Button.vue -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Checkbox.vue -------------------------------------------------------------------------------- /resources/js/Components/CommunityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/CommunityList.vue -------------------------------------------------------------------------------- /resources/js/Components/DownVoteLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/DownVoteLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Dropdown.vue -------------------------------------------------------------------------------- /resources/js/Components/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/DropdownLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Input.vue -------------------------------------------------------------------------------- /resources/js/Components/InputError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/InputError.vue -------------------------------------------------------------------------------- /resources/js/Components/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Label.vue -------------------------------------------------------------------------------- /resources/js/Components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/NavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/Pagination.vue -------------------------------------------------------------------------------- /resources/js/Components/PostCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/PostCard.vue -------------------------------------------------------------------------------- /resources/js/Components/PostList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/PostList.vue -------------------------------------------------------------------------------- /resources/js/Components/PostVote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/PostVote.vue -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/ResponsiveNavLink.vue -------------------------------------------------------------------------------- /resources/js/Components/UpVoteLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/UpVoteLink.vue -------------------------------------------------------------------------------- /resources/js/Components/ValidationErrors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Components/ValidationErrors.vue -------------------------------------------------------------------------------- /resources/js/Layouts/Authenticated.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Layouts/Authenticated.vue -------------------------------------------------------------------------------- /resources/js/Layouts/Guest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Layouts/Guest.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /resources/js/Pages/Communities/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Communities/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Communities/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Communities/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Communities/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Communities/Index.vue -------------------------------------------------------------------------------- /resources/js/Pages/Communities/Posts/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Communities/Posts/Create.vue -------------------------------------------------------------------------------- /resources/js/Pages/Communities/Posts/Edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Communities/Posts/Edit.vue -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Dashboard.vue -------------------------------------------------------------------------------- /resources/js/Pages/Frontend/Communities/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Frontend/Communities/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Frontend/Posts/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Frontend/Posts/Show.vue -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/Pages/Welcome.vue -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/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/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/reddit-clone-with-laravel-inertiajs/HEAD/vite.config.js --------------------------------------------------------------------------------