Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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")

# &copy 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}}}

```