├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── CommentController.php │ │ │ ├── DashboardController.php │ │ │ ├── IdeaController.php │ │ │ └── UserController.php │ │ ├── AuthController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── DashboardController.php │ │ ├── FeedController.php │ │ ├── FollowerController.php │ │ ├── IdeaController.php │ │ ├── IdeaLikeController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SetLocale.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── CreateCommentRequest.php │ │ ├── CreateIdeaRequest.php │ │ ├── UpdateIdeaRequest.php │ │ └── UpdateUserRequest.php ├── Mail │ └── WelcomeEmail.php ├── Models │ ├── Comment.php │ ├── Idea.php │ └── User.php ├── Policies │ ├── IdeaPolicy.php │ └── UserPolicy.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 └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_07_15_010515_create_ideas_table.php │ ├── 2023_07_23_000053_create_comments_table.php │ ├── 2023_08_03_121116_add_bio_and_image_to_users.php │ ├── 2023_08_06_113909_create_follower_user_table.php │ ├── 2023_08_26_113738_remove_likes_from_ideas.php │ ├── 2023_08_26_113943_create_idea_like_table.php │ └── 2023_09_13_151628_add_is_admin_to_users.php └── seeders │ └── DatabaseSeeder.php ├── lang ├── en │ ├── auth.php │ ├── ideas.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── es │ └── ideas.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── admin │ ├── comments │ │ └── index.blade.php │ ├── dashboard.blade.php │ ├── ideas │ │ └── index.blade.php │ ├── shared │ │ └── left-sidebar.blade.php │ └── users │ │ └── index.blade.php │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ ├── dashboard.blade.php │ ├── emails │ └── welcome-email.blade.php │ ├── ideas │ ├── shared │ │ ├── comments-box.blade.php │ │ ├── idea-card.blade.php │ │ ├── like-button.blade.php │ │ └── submit-idea.blade.php │ └── show.blade.php │ ├── layout │ ├── app.blade.php │ └── nav.blade.php │ ├── shared │ ├── error-message.blade.php │ ├── follow-box.blade.php │ ├── left-sidebar.blade.php │ ├── search-bar.blade.php │ ├── success-message.blade.php │ └── widget.blade.php │ ├── terms.blade.php │ └── users │ ├── edit.blade.php │ ├── shared │ ├── user-card.blade.php │ ├── user-edit-card.blade.php │ └── user-stats.blade.php │ └── show.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 ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/Admin/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/IdeaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/Admin/IdeaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/Admin/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FeedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/FeedController.php -------------------------------------------------------------------------------- /app/Http/Controllers/FollowerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/FollowerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/IdeaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/IdeaController.php -------------------------------------------------------------------------------- /app/Http/Controllers/IdeaLikeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/IdeaLikeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateCommentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Requests/CreateCommentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateIdeaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Requests/CreateIdeaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateIdeaRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Requests/UpdateIdeaRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateUserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Http/Requests/UpdateUserRequest.php -------------------------------------------------------------------------------- /app/Mail/WelcomeEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Mail/WelcomeEmail.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Idea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Models/Idea.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/IdeaPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Policies/IdeaPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/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/yelocode/ideas/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_15_010515_create_ideas_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_07_15_010515_create_ideas_table.php -------------------------------------------------------------------------------- /database/migrations/2023_07_23_000053_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_07_23_000053_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_03_121116_add_bio_and_image_to_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_08_03_121116_add_bio_and_image_to_users.php -------------------------------------------------------------------------------- /database/migrations/2023_08_06_113909_create_follower_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_08_06_113909_create_follower_user_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_26_113738_remove_likes_from_ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_08_26_113738_remove_likes_from_ideas.php -------------------------------------------------------------------------------- /database/migrations/2023_08_26_113943_create_idea_like_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_08_26_113943_create_idea_like_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_13_151628_add_is_admin_to_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/migrations/2023_09_13_151628_add_is_admin_to_users.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/en/ideas.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/es/ideas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/lang/es/ideas.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/admin/comments/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/admin/comments/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/admin/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/ideas/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/admin/ideas/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/shared/left-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/admin/shared/left-sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/emails/welcome-email.blade.php: -------------------------------------------------------------------------------- 1 |
testing
3 | -------------------------------------------------------------------------------- /resources/views/ideas/shared/comments-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/ideas/shared/comments-box.blade.php -------------------------------------------------------------------------------- /resources/views/ideas/shared/idea-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/ideas/shared/idea-card.blade.php -------------------------------------------------------------------------------- /resources/views/ideas/shared/like-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/ideas/shared/like-button.blade.php -------------------------------------------------------------------------------- /resources/views/ideas/shared/submit-idea.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/ideas/shared/submit-idea.blade.php -------------------------------------------------------------------------------- /resources/views/ideas/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/ideas/show.blade.php -------------------------------------------------------------------------------- /resources/views/layout/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/layout/app.blade.php -------------------------------------------------------------------------------- /resources/views/layout/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/layout/nav.blade.php -------------------------------------------------------------------------------- /resources/views/shared/error-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/error-message.blade.php -------------------------------------------------------------------------------- /resources/views/shared/follow-box.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/follow-box.blade.php -------------------------------------------------------------------------------- /resources/views/shared/left-sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/left-sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/shared/search-bar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/search-bar.blade.php -------------------------------------------------------------------------------- /resources/views/shared/success-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/success-message.blade.php -------------------------------------------------------------------------------- /resources/views/shared/widget.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/shared/widget.blade.php -------------------------------------------------------------------------------- /resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/terms.blade.php -------------------------------------------------------------------------------- /resources/views/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/users/shared/user-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/users/shared/user-card.blade.php -------------------------------------------------------------------------------- /resources/views/users/shared/user-edit-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/users/shared/user-edit-card.blade.php -------------------------------------------------------------------------------- /resources/views/users/shared/user-stats.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/users/shared/user-stats.blade.php -------------------------------------------------------------------------------- /resources/views/users/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/resources/views/users/show.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/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/yelocode/ideas/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 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yelocode/ideas/HEAD/vite.config.js --------------------------------------------------------------------------------