{"id":30196293,"url":"https://github.com/shaheedmohamed/myshop","last_synced_at":"2026-04-12T17:05:07.704Z","repository":{"id":308892348,"uuid":"1034461642","full_name":"shaheedmohamed/MyShop","owner":"shaheedmohamed","description":"E-commerce built with Laravel \u0026 Vue 3 and Vite for MyShop platform.","archived":false,"fork":false,"pushed_at":"2025-08-08T13:02:16.000Z","size":112,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-08T15:04:20.415Z","etag":null,"topics":["backend","ecommerce","frontend","laravel","npm","vite","vuejs"],"latest_commit_sha":null,"homepage":"","language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shaheedmohamed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-08T12:31:59.000Z","updated_at":"2025-08-08T13:25:12.000Z","dependencies_parsed_at":"2025-08-08T15:04:21.979Z","dependency_job_id":"160c99d7-9d2f-4351-9da0-388ac89a53fe","html_url":"https://github.com/shaheedmohamed/MyShop","commit_stats":null,"previous_names":["shaheedmohamed/myshop"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/shaheedmohamed/MyShop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaheedmohamed%2FMyShop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaheedmohamed%2FMyShop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaheedmohamed%2FMyShop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaheedmohamed%2FMyShop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shaheedmohamed","download_url":"https://codeload.github.com/shaheedmohamed/MyShop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shaheedmohamed%2FMyShop/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270183606,"owners_count":24541341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backend","ecommerce","frontend","laravel","npm","vite","vuejs"],"created_at":"2025-08-13T05:17:39.556Z","updated_at":"2026-04-12T17:05:07.662Z","avatar_url":"https://github.com/shaheedmohamed.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Store Social Platform\n\nA social media + marketplace platform for store owners, built with **Laravel** (backend) and **Vue.js** (frontend).\n\n---\n\n## 🚀 Features\n\n### 1. User Registration \u0026 Authentication\n- Store owner name\n- Store name\n- Email\n- Password + Confirm Password\n- Store cover image\n- Store logo\n- Account type: Public / Private\n- Redirect to profile after registration\n- Laravel Sanctum authentication\n\n### 2. Home Feed\n- Display posts from users\n- Every 5 posts → display a sponsored product\n- After 1 minute of browsing → show an alert asking to sign up\n- Like \u0026 comment system\n\n### 3. Profile Page\n- Display user details\n- Show posts \u0026 products of the user\n- Edit profile info and images\n\n### 4. Posts\n- Create post with text + optional image\n- Choose visibility: Public / Friends\n- Edit \u0026 delete posts\n\n### 5. Friends / Followers System\n- Send friend requests\n- Follow/unfollow accounts\n- Friend suggestions\n\n### 6. Products\n- Store owners can add products\n- Products must be approved by admin before appearing\n- Sponsored products appear in the Home feed\n- Product categories \u0026 images\n\n### 7. Notifications\n- **For users**: likes, comments, friend requests, product approvals\n- **For admin**: new products pending approval\n\n### 8. Admin Dashboard\n- View all users \u0026 their content\n- Ban/unban users\n- Approve/reject products\n- View site statistics (optional future feature)\n\n---\n\n## 🛠 Tech Stack\n- **Backend**: Laravel 11 + MySQL\n- **Frontend**: Vue.js 3 + Pinia + Vue Router\n- **Auth**: Laravel Sanctum\n- **Storage**: Laravel Storage (Local/S3)\n\n---\n\n## 📂 Project Structure\nstore-social-platform/\n│── backend/ (Laravel)\n│ ├── app/\n│ ├── routes/\n│ ├── database/\n│ ├── public/storage/ (uploaded images)\n│\n│── frontend/ (Vue.js)\n│ ├── src/\n│ ├── public/\n│ ├── components/\n\nyaml\nCopy\nEdit\n\n---\n\n## ⚡ Installation\n\n### Backend (Laravel)\n```bash\ncomposer create-project laravel/laravel store-social-platform\ncd store-social-platform\ncomposer require laravel/sanctum\nphp artisan vendor:publish --provider=\"Laravel\\Sanctum\\SanctumServiceProvider\"\nphp artisan migrate\nphp artisan serve\nFrontend (Vue.js)\nbash\nCopy\nEdit\ncd ..\nnpm create vue@latest frontend\ncd frontend\nnpm install\nnpm install axios vue-router pinia\nnpm run dev","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaheedmohamed%2Fmyshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshaheedmohamed%2Fmyshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshaheedmohamed%2Fmyshop/lists"}