├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── .DS_Store ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Controller.php │ │ └── ProfileController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Livewire │ ├── Chat │ │ ├── Chat.php │ │ ├── ChatList.php │ │ ├── Index.php │ │ └── Main.php │ ├── Components │ │ ├── Notifications.php │ │ └── Sidebar.php │ ├── Explore.php │ ├── Home.php │ ├── Post │ │ ├── Create.php │ │ ├── Item.php │ │ └── View │ │ │ ├── Item.php │ │ │ ├── Modal.php │ │ │ └── Page.php │ ├── Profile │ │ ├── Home.php │ │ ├── Reels.php │ │ └── Saved.php │ └── Reels.php ├── Models │ ├── Comment.php │ ├── Conversation.php │ ├── Media.php │ ├── Message.php │ ├── Post.php │ └── User.php ├── Notifications │ ├── MessageSentNotification.php │ ├── NewCommentNotification.php │ ├── NewFollowerNotification.php │ └── PostLikedNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── favorite.php ├── filesystems.php ├── follow.php ├── hashing.php ├── like.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── view.php └── wire-elements-modal.php ├── cover.png ├── database ├── .DS_Store ├── .gitignore ├── factories │ ├── CommentFactory.php │ ├── MediaFactory.php │ ├── PostFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2018_12_14_000000_create_favorites_table.php │ ├── 2018_12_14_000000_create_likes_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_05_02_000000_create_followables_table.php │ ├── 2023_09_19_085956_create_posts_table.php │ ├── 2023_09_23_104856_create_media_table.php │ ├── 2023_10_08_071252_create_comments_table.php │ ├── 2023_11_09_043852_create_notifications_table.php │ ├── 2023_11_29_042726_create_conversations_table.php │ └── 2023_11_29_042735_create_messages_table.php └── seeders │ ├── CommentSeeder.php │ ├── DatabaseSeeder.php │ ├── MediaSeeder.php │ └── PostSeeder.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .DS_Store ├── .htaccess ├── assets │ └── logo.png ├── favicon.ico ├── index.php └── robots.txt ├── resources ├── .DS_Store ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── avatar.blade.php │ ├── danger-button.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input-error.blade.php │ ├── input-label.blade.php │ ├── modal.blade.php │ ├── nav-link.blade.php │ ├── primary-button.blade.php │ ├── profile-layout.blade.php │ ├── responsive-nav-link.blade.php │ ├── secondary-button.blade.php │ ├── text-input.blade.php │ └── video.blade.php │ ├── dashboard.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ ├── navigation.blade.php │ └── sidebar.blade.php │ ├── livewire │ ├── chat │ │ ├── chat-list.blade.php │ │ └── chat.blade.php │ ├── components │ │ ├── notifications.blade.php │ │ └── sidebar.blade.php │ ├── explore.blade.php │ ├── home.blade.php │ ├── post │ │ ├── create.blade.php │ │ ├── item.blade.php │ │ └── view │ │ │ ├── item.blade.php │ │ │ └── partials │ │ │ ├── comment.blade.php │ │ │ └── reply.blade.php │ ├── profile │ │ ├── home.blade.php │ │ ├── reels.blade.php │ │ └── saved.blade.php │ └── reels.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ ├── vendor │ └── wire-elements-modal │ │ └── modal.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── .DS_Store ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── .DS_Store ├── CreatesApplication.php ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Livewire/Chat/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Chat/Chat.php -------------------------------------------------------------------------------- /app/Livewire/Chat/ChatList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Chat/ChatList.php -------------------------------------------------------------------------------- /app/Livewire/Chat/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Chat/Index.php -------------------------------------------------------------------------------- /app/Livewire/Chat/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Chat/Main.php -------------------------------------------------------------------------------- /app/Livewire/Components/Notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Components/Notifications.php -------------------------------------------------------------------------------- /app/Livewire/Components/Sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Components/Sidebar.php -------------------------------------------------------------------------------- /app/Livewire/Explore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Explore.php -------------------------------------------------------------------------------- /app/Livewire/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Home.php -------------------------------------------------------------------------------- /app/Livewire/Post/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Post/Create.php -------------------------------------------------------------------------------- /app/Livewire/Post/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Post/Item.php -------------------------------------------------------------------------------- /app/Livewire/Post/View/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Post/View/Item.php -------------------------------------------------------------------------------- /app/Livewire/Post/View/Modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Post/View/Modal.php -------------------------------------------------------------------------------- /app/Livewire/Post/View/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Post/View/Page.php -------------------------------------------------------------------------------- /app/Livewire/Profile/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Profile/Home.php -------------------------------------------------------------------------------- /app/Livewire/Profile/Reels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Profile/Reels.php -------------------------------------------------------------------------------- /app/Livewire/Profile/Saved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Profile/Saved.php -------------------------------------------------------------------------------- /app/Livewire/Reels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Livewire/Reels.php -------------------------------------------------------------------------------- /app/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/Comment.php -------------------------------------------------------------------------------- /app/Models/Conversation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/Conversation.php -------------------------------------------------------------------------------- /app/Models/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/Media.php -------------------------------------------------------------------------------- /app/Models/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/Message.php -------------------------------------------------------------------------------- /app/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/Post.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/MessageSentNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Notifications/MessageSentNotification.php -------------------------------------------------------------------------------- /app/Notifications/NewCommentNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Notifications/NewCommentNotification.php -------------------------------------------------------------------------------- /app/Notifications/NewFollowerNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Notifications/NewFollowerNotification.php -------------------------------------------------------------------------------- /app/Notifications/PostLikedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Notifications/PostLikedNotification.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/database.php -------------------------------------------------------------------------------- /config/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/favorite.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/follow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/follow.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/like.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/view.php -------------------------------------------------------------------------------- /config/wire-elements-modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/config/wire-elements-modal.php -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/cover.png -------------------------------------------------------------------------------- /database/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/.DS_Store -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/factories/CommentFactory.php -------------------------------------------------------------------------------- /database/factories/MediaFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/factories/MediaFactory.php -------------------------------------------------------------------------------- /database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/factories/PostFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/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/namumakwembo/instagram-clone/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_14_000000_create_favorites_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2018_12_14_000000_create_favorites_table.php -------------------------------------------------------------------------------- /database/migrations/2018_12_14_000000_create_likes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2018_12_14_000000_create_likes_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/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/namumakwembo/instagram-clone/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2022_05_02_000000_create_followables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2022_05_02_000000_create_followables_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_19_085956_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_09_19_085956_create_posts_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_23_104856_create_media_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_09_23_104856_create_media_table.php -------------------------------------------------------------------------------- /database/migrations/2023_10_08_071252_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_10_08_071252_create_comments_table.php -------------------------------------------------------------------------------- /database/migrations/2023_11_09_043852_create_notifications_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_11_09_043852_create_notifications_table.php -------------------------------------------------------------------------------- /database/migrations/2023_11_29_042726_create_conversations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_11_29_042726_create_conversations_table.php -------------------------------------------------------------------------------- /database/migrations/2023_11_29_042735_create_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/migrations/2023_11_29_042735_create_messages_table.php -------------------------------------------------------------------------------- /database/seeders/CommentSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/seeders/CommentSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/MediaSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/seeders/MediaSeeder.php -------------------------------------------------------------------------------- /database/seeders/PostSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/database/seeders/PostSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/avatar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/avatar.blade.php -------------------------------------------------------------------------------- /resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /resources/views/components/input-label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/input-label.blade.php -------------------------------------------------------------------------------- /resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/primary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/primary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/profile-layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/profile-layout.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /resources/views/components/text-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/text-input.blade.php -------------------------------------------------------------------------------- /resources/views/components/video.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/components/video.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/chat/chat-list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/chat/chat-list.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/chat/chat.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/chat/chat.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/components/notifications.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/components/notifications.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/components/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/components/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/explore.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/explore.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/home.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/post/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/post/item.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post/view/item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/post/view/item.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post/view/partials/comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/post/view/partials/comment.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/post/view/partials/reply.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/post/view/partials/reply.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/profile/home.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/reels.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/profile/reels.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/profile/saved.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/profile/saved.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/reels.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/livewire/reels.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/profile/partials/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/profile/partials/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/profile/partials/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/wire-elements-modal/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/vendor/wire-elements-modal/modal.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/storage/.DS_Store -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/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/namumakwembo/instagram-clone/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namumakwembo/instagram-clone/HEAD/vite.config.js --------------------------------------------------------------------------------