PHPackages                             bagisto/b2b-suite - 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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. bagisto/b2b-suite

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

bagisto/b2b-suite
=================

A comprehensive B2B Suite extension for Bagisto, providing company management, customer-company associations, and role-based permissions.

13404↓50%9Blade

Since Oct 16Pushed 7mo agoCompare

[ Source](https://github.com/bagisto/b2b-suite)[ Packagist](https://packagist.org/packages/bagisto/b2b-suite)[ RSS](/packages/bagisto-b2b-suite/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

 [![](https://camo.githubusercontent.com/c10d7dd360819c9917061f042c69f1c3709060da3678c4cce24b7d926d534186/68747470733a2f2f6261676973746f2e636f6d2f77702d636f6e74656e742f7468656d65732f6261676973746f2f696d616765732f6c6f676f2e706e67)](https://camo.githubusercontent.com/c10d7dd360819c9917061f042c69f1c3709060da3678c4cce24b7d926d534186/68747470733a2f2f6261676973746f2e636f6d2f77702d636f6e74656e742f7468656d65732f6261676973746f2f696d616765732f6c6f676f2e706e67)

Open Source B2B Ecommerce Platform
----------------------------------

[](#open-source-b2b-ecommerce-platform)

 [![Packagist Downloads](https://camo.githubusercontent.com/1f9d02968ccef1450ce6944d480847a41acad0a5b0a306f42e6128525628216f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261676973746f2f6232622d7375697465)](https://camo.githubusercontent.com/1f9d02968ccef1450ce6944d480847a41acad0a5b0a306f42e6128525628216f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6261676973746f2f6232622d7375697465) [![License](https://camo.githubusercontent.com/ba1d23b8a32b4044c7744b85bd9bb3b80cce61e73ff95ed0480496ef2d9e2a64/68747470733a2f2f706f7365722e707567782e6f72672f6261676973746f2f6232622d73756974652f6c6963656e73652e737667)](https://packagist.org/packages/bagisto/b2b-suite)

---

### 1. Introduction:

[](#1-introduction)

The **Bagisto B2B Ecommerce** is a comprehensive package designed to extend the Bagisto eCommerce platform with advanced Business-to-Business (B2B) capabilities. It introduces powerful **company management features, role-based permissions**, and seamless **company-customer relationships**, enabling businesses to operate in a more structured and professional B2B environment.

Bagisto B2B Ecommerce
=====================

[](#bagisto-b2b-ecommerce)

The **Bagisto B2B Ecommerce** enhances your Bagisto store with advanced Business-to-Business (B2B) features. It enables company-based purchasing, multi-user access, quote negotiation, and procurement management — empowering businesses to handle B2B workflows efficiently within a single platform.

[![Bagisto B2B Ecommerce Image](https://github.com/bagisto/temp-media/raw/master/intro-banner.webp)](https://github.com/bagisto/temp-media/blob/master/intro-banner.webp)

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

[](#key-features)

- **Company Registration** – Companies can easily register from the storefront and manage their organization profile.
- **Company User Management** – Companies can create users under their account and manage access control.
- **Role-Based Permissions** – Assign roles and define permissions for users within the company to restrict access as needed.
- **Purchase Orders (Company End)** – Companies can create and manage purchase orders directly from their dashboard.
- **Requisition Lists** – Companies can add products to requisition lists for bulk purchase and quick ordering.
- **Quick Order** – Add multiple products to the cart quickly using SKUs or CSV upload.
- **Request for Quote (RFQ)** – Companies can submit quote requests directly from the storefront.
- **Frontend Quotation Handling** – Companies can create quotations, negotiate terms, and approve or decline quotes from their dashboard.
- **Quotation Management** – Admin and company users can negotiate, approve, or reject quotes seamlessly.
- **Companies Management (Admin End)** – Admin can create companies and manage from backend.
- **Purchase Orders (Admin End)** – Admins can view and manage all company purchase orders centrally.

[![Bagisto B2B Ecommerce Features Image](https://github.com/bagisto/temp-media/raw/master/b2b-ecommerce-feature-list.webp)](https://github.com/bagisto/temp-media/blob/master/b2b-ecommerce-feature-list.webp)

Admin Configuration Options
---------------------------

[](#admin-configuration-options)

- **Enable B2B Ecommerce** – Toggle the B2B Ecommerce module on or off globally.
- **Allow Customer to Approve Quote** – Enable or restrict customers from finalizing quote approvals.
- **Procurement Method** – Choose the preferred procurement workflow (e.g., PO-based or direct).
- **Quotation Default Expiration Period** – Define how long a quotation remains valid by default.
- **Quotation Email Template Options** – Manage email templates for quotation communication.
- **Purchase Order Prefix** – Customize the prefix for purchase order numbers.
- **Manage Number of Requisition Lists** – Limit how many requisition lists a company can maintain.

[![Bagisto B2B Ecommerce Features Image](https://github.com/bagisto/temp-media/raw/master/b2b-ecommerce-admin-feature-list.webp)](https://github.com/bagisto/temp-media/blob/master/b2b-ecommerce-admin-feature-list.webp)

---

### 2. Requirements:

[](#2-requirements)

- **Bagisto**: v2.3.x

---

### 3. Installation:

[](#3-installation)

#### Step 1: Install via Composer

[](#step-1-install-via-composer)

```
composer require bagisto/b2b-suite:dev-master
```

### 2. Register the Service Provider

[](#2-register-the-service-provider)

In `bootstrap/providers.php`:

> **Note:** Autoloading via Composer’s package auto-discovery is **not possible** for this provider. The registry order matters—`B2BSuiteServiceProvider` must be listed **after** the Shop package or at the end of the providers array. Auto-discovery would load it too early, which can cause issues.

```
'providers' => [
    Webkul\B2BSuite\Providers\B2BSuiteServiceProvider::class,
],
```

#### Step 3: Run the installation command

[](#step-3-run-the-installation-command)

```
php artisan b2b-suite:install
```

> That’s it! The package is now installed and ready to use in your Bagisto project.

---

### 4. License

[](#4-license)

The B2B Ecommerce is open-sourced software licensed under the **MIT License**.

---

### 5. Support

[](#5-support)

For issues, questions, or contributions, please contact the **[Webkul Team](https://webkul.com/contacts/)**.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance45

Moderate activity, may be stable

Popularity28

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 Bus Factor1

Top contributor holds 67.3% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/680982d0f4253ee1f7df370dc28852fe08dd6aab0cfae16f45d6ea026fdfbd02?d=identicon)[devansh.bawari419@webkul.com](/maintainers/devansh.bawari419@webkul.com)

---

Top Contributors

[![ashif322](https://avatars.githubusercontent.com/u/228488319?v=4)](https://github.com/ashif322 "ashif322 (37 commits)")[![girjesh-webkul](https://avatars.githubusercontent.com/u/107393206?v=4)](https://github.com/girjesh-webkul "girjesh-webkul (16 commits)")[![devansh-webkul](https://avatars.githubusercontent.com/u/68321766?v=4)](https://github.com/devansh-webkul "devansh-webkul (2 commits)")

---

Tags

b2bbagisto-packagecommerceecommercelaravelopen-sourcephpplatform

### Embed Badge

![Health badge](/badges/bagisto-b2b-suite/health.svg)

```
[![Health](https://phpackages.com/badges/bagisto-b2b-suite/health.svg)](https://phpackages.com/packages/bagisto-b2b-suite)
```

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M101](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

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