Download the PHP package tavy315/sylius-sales-representatives-plugin without Composer
On this page you can find all versions of the php package tavy315/sylius-sales-representatives-plugin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tavy315/sylius-sales-representatives-plugin
More information about tavy315/sylius-sales-representatives-plugin
Files in tavy315/sylius-sales-representatives-plugin
Package sylius-sales-representatives-plugin
Short Description Sylius plugin for managing sales representatives.
License MIT
Informations about the package sylius-sales-representatives-plugin
Sylius Sales Representatives Plugin
This plugin for Sylius allows you to manage sales representatives.
Supports Doctrine ORM driver only.
Screenshots
Sales Representatives:
Customer:
Installation
Step 1: Install the plugin
Open a command console, enter your project directory and execute the following command to download the latest stable version of this plugin:
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the plugin
Then, enable the plugin by adding it to the list of registered plugins/bundles in config/bundles.php
file of your project:
Step 3: Configure the plugin
Step 4: Customize models
Read more about Sylius models customization here.
Customize your Customer model
Add a Tavy315\SyliusSalesRepresentativesPlugin\Model\Customer\SalesRepresentativeTrait
trait to your App\Entity\Customer\Customer
class.
- If you use
annotations
mapping:
Step 5: Update your database schema
Usage
From now, you can attach a sales representative to any customer; our use case is to send a copy of the order confirmation email when customer makes an order.