Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bedus-creation/shopping-sahuba
Sahuba is an online shopping platform with a slogan of `Sell your products in one click.`. It's main idea is to help people to sell their products online with in a click. Technically it's build on the top of modern web framework like laravel , vue js, GraphQl and so on.
https://github.com/bedus-creation/shopping-sahuba
bootstrap ecommerce-website laravel laravel-framework multivendor-ecommerce mysql nepal vuejs
Last synced: 2 months ago
JSON representation
Sahuba is an online shopping platform with a slogan of `Sell your products in one click.`. It's main idea is to help people to sell their products online with in a click. Technically it's build on the top of modern web framework like laravel , vue js, GraphQl and so on.
- Host: GitHub
- URL: https://github.com/bedus-creation/shopping-sahuba
- Owner: bedus-creation
- Created: 2018-06-01T19:05:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-06T19:17:12.000Z (over 1 year ago)
- Last Synced: 2023-05-06T20:24:42.419Z (over 1 year ago)
- Topics: bootstrap, ecommerce-website, laravel, laravel-framework, multivendor-ecommerce, mysql, nepal, vuejs
- Language: JavaScript
- Homepage: http://sahuba.com
- Size: 39.4 MB
- Stars: 21
- Watchers: 2
- Forks: 9
- Open Issues: 19
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[![Sahuba Shopping demo on Youtube](https://yt-embed.herokuapp.com/embed?v=BKUUyKLsW5U)](https://www.youtube.com/watch?v=BKUUyKLsW5U "Everything Is AWESOME")
# © All rights reserved.
Any redistribution or reproduction of part or all of the contents in any form is prohibited other than the following:
you may download to a local hard disk extracts for your personal and non-commercial use only.
# Installation and setUp
```
composer install
```# seed database
```
php artisan migrate:fresh --seed
```# URL to get products API
```
http://localhost:8080/graphql?query={products{id,name,price,images{url}}}```
# URL to get all products to a categories```
http://localhost:8080/graphql?query={categories{name,products{id,name,price,images{url}}}}```
# Get the price details
```
http://localhost:8080/graphql?query={products(id:1){id,name,price,details,images{url}}}```