PHPackages                             gp247/shop - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. gp247/shop

ActiveLibrary[Framework](/categories/framework)

gp247/shop
==========

Process shopping cart for gp247 Ecommerce with Laravel

1.2.4(6mo ago)0698↓33.3%2MITPHPPHP ^8.2

Since Apr 27Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/gp247net/shop)[ Packagist](https://packagist.org/packages/gp247/shop)[ Docs](https://gp247.net)[ Fund](https://gp247.net)[ GitHub Sponsors](https://github.com/gp247net)[ RSS](/packages/gp247-shop/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (30)Used By (2)

 [![](https://camo.githubusercontent.com/d5ceffc7a92e605a19bc02fe26f65f2add6c6da3d0454b8a98b76a8edf105146/68747470733a2f2f7374617469632e67703234372e6e65742f6c6f676f2f6c6f676f2e706e67)](https://gp247.net)

Free e-commerce platform for businesses
 `composer require GP247/Shop`

[![Total Downloads](https://camo.githubusercontent.com/7406969e2100adb98fb1d782cd41a7a4a288a1fbfe66de044c48207c318e077e/68747470733a2f2f706f7365722e707567782e6f72672f47503234372f53686f702f642f746f74616c2e737667)](https://packagist.org/packages/GP247/Shop)[![Latest Stable Version](https://camo.githubusercontent.com/5103a529c45d2c06f5c96e62b178fddf545a7b26ae2110579b26d54afe3f18fa/68747470733a2f2f706f7365722e707567782e6f72672f47503234372f53686f702f762f737461626c652e737667)](https://packagist.org/packages/GP247/Shop)[![License](https://camo.githubusercontent.com/9cdb4fed90ac27b577918dd153476aa5788849fc832e89a92d7b4b370efb7b6a/68747470733a2f2f706f7365722e707567782e6f72672f47503234372f53686f702f6c6963656e73652e737667)](https://packagist.org/packages/GP247/Shop)[![Ask DeepWiki](https://camo.githubusercontent.com/0f5ae213ac378635adeb5d7f13cef055ad2f7d9a47b36de7b1c67dbe09f609ca/68747470733a2f2f6465657077696b692e636f6d2f62616467652e737667)](https://deepwiki.com/gp247net/shop)

Introduction
------------

[](#introduction)

GP247/Shop is a core package in the GP247 ecosystem that turns your GP247 site into a full-featured online store. It provides comprehensive e-commerce functionality and inherits all GP247 ecosystem features.

Key Features
------------

[](#key-features)

### E-commerce Features

[](#e-commerce-features)

- Product Management
    - Product categories and attributes
    - Product variants and options
    - Inventory management
    - Bulk import/export
- Order Management
    - Order processing and tracking
    - Multiple payment gateways
    - Shipping methods integration
    - Order status management
- Customer Management
    - Customer profiles and accounts
    - Address management
    - Order history
    - Customer groups and discounts
- Marketing Tools
    - Promotions and discounts
    - Coupon management
    - Newsletter integration
    - Product reviews and ratings
- Shopping Features
    - Shopping cart
    - Wishlist
    - Product comparison
    - Recently viewed products
- Multi-vendor Support
    - Vendor dashboard
    - Commission management
    - Vendor product management
    - Vendor order tracking

### GP247 Ecosystem Features

[](#gp247-ecosystem-features)

- Page content management
- Flexible template system
- Extensible plugin system
- Navigation and link management
- Integrated contact and subscription forms
- Multi-language support
- SEO optimization
- Responsive design
- Security features
- Backup and restore

Installation
------------

[](#installation)

### Option 1: New installation with GP247 CMS

[](#option-1-new-installation-with-gp247-cms)

1. Install gp247/cms (includes Laravel, GP247/Core, GP247/Front)

> `composer create-project gp247/cms`

2. Install gp247/shop package

> `composer require gp247/shop`

3. Register the service provider in `bootstrap/providers.php` (add at the end of the array)

```
return [
    // ... existing providers
    GP247\Shop\ShopServiceProvider::class,
];
```

4. Install and create sample data

> `php artisan gp247:shop-install`

> `php artisan gp247:shop-sample`

### Option 2: Use S-Cart source code

[](#option-2-use-s-cart-source-code)

S-Cart already includes all the necessary components. See the full details at the [GitHub repository](https://github.com/gp247net/s-cart).

1. Create the project

> `composer create-project gp247/s-cart`

2. Install sample data

> `php artisan sc:install`

> `php artisan sc:sample`

[![](https://camo.githubusercontent.com/cadb922660f562f8f99c7f5d7fabe241bfd671f193281a06a0e60937145162ba/68747470733a2f2f7374617469632e732d636172742e6f72672f67756964652f7573652f636f6d6d6f6e2f73686f702e6a7067)](https://camo.githubusercontent.com/cadb922660f562f8f99c7f5d7fabe241bfd671f193281a06a0e60937145162ba/68747470733a2f2f7374617469632e732d636172742e6f72672f67756964652f7573652f636f6d6d6f6e2f73686f702e6a7067)

[![](https://camo.githubusercontent.com/d3f3e49f64dcdd091125789a240e9132d966433bd136e82abe22ad29359ab35d/68747470733a2f2f7374617469632e732d636172742e6f72672f67756964652f7573652f636f6d6d6f6e2f64617368626f6172642e6a7067)](https://camo.githubusercontent.com/d3f3e49f64dcdd091125789a240e9132d966433bd136e82abe22ad29359ab35d/68747470733a2f2f7374617469632e732d636172742e6f72672f67756964652f7573652f636f6d6d6f6e2f64617368626f6172642e6a7067)

Customization
-------------

[](#customization)

### Customize Admin Views

[](#customize-admin-views)

To customize admin views, run:

> `php artisan vendor:publish --tag=gp247:view-shop-admin`

The views will be published to `resources/views/vendor/gp247-shop-admin`.

### Customize Front Views

[](#customize-front-views)

To customize and update front views, run:

> `php artisan vendor:publish --tag=gp247:view-shop-admin`

The views will be stored in `app/GP247/Templates/Default`.

If you are not using the `Default` template, manually copy the views from `vendor/gp247/shop/Views/front` to your template directory.

Documentation
-------------

[](#documentation)

- GP247 documentation:

License
-------

[](#license)

The GP247/Shop is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance68

Regular maintenance activity

Popularity16

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Recently: every ~13 days

Total

29

Last Release

208d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/086acce7df4c04e787054a5d38cddce4fb7d3eca2caa45c700bcf15fff95cbd5?d=identicon)[gp247](/maintainers/gp247)

---

Top Contributors

[![gp247net](https://avatars.githubusercontent.com/u/193377302?v=4)](https://github.com/gp247net "gp247net (89 commits)")

---

Tags

laravelshopecommerceshopping cartgp247

### Embed Badge

![Health badge](/badges/gp247-shop/health.svg)

```
[![Health](https://phpackages.com/badges/gp247-shop/health.svg)](https://phpackages.com/packages/gp247-shop)
```

###  Alternatives

[aimeos/aimeos

Aimeos ecommerce and shop system

5.3k108.1k](/packages/aimeos-aimeos)[jsdecena/laracom

Laravel powered e-commerce

2.0k4.4k](/packages/jsdecena-laracom)[getcandy/core

GetCandy Laravel e-commerce core functionality.

156.6k3](/packages/getcandy-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
