Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arobases-sylius-plugins/arobasessyliuscustomersupportplugin
Plugin allowing users to open tickets for their orders and admin to manage and respond to them on Sylius
https://github.com/arobases-sylius-plugins/arobasessyliuscustomersupportplugin
arobases customer support sylius sylius-plugin symfony
Last synced: 3 months ago
JSON representation
Plugin allowing users to open tickets for their orders and admin to manage and respond to them on Sylius
- Host: GitHub
- URL: https://github.com/arobases-sylius-plugins/arobasessyliuscustomersupportplugin
- Owner: Arobases-Sylius-Plugins
- Created: 2022-03-12T16:20:25.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T12:38:24.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T13:03:48.569Z (3 months ago)
- Topics: arobases, customer, support, sylius, sylius-plugin, symfony
- Language: PHP
- Homepage:
- Size: 136 KB
- Stars: 2
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Arobases Sylius Customer support plugin
![banner_arobases](https://user-images.githubusercontent.com/39689570/219095474-12063079-528f-4be8-b006-debff3185920.jpg)
## Install
### Composer
```bash
composer require arobases-sylius-public/sylius-customer-support-plugin
```
### Copy resourceCreate file `config/packages/arobases_sylius_customer_support_plugin.yaml` with this content
```
imports:
- { resource: "@ArobasesSyliusCustomerSupportPlugin/Resources/config/resources.yaml" }
```### Copy routes
Create file `config/routes/arobases_sylius_customer_support_plugin.yaml` with this content
```
arobases_sylius_customer_support_plugin_admin:
resource: "@ArobasesSyliusCustomerSupportPlugin/Resources/config/admin_routing.yml"arobases_customer_support_plugin:
resource: "@ArobasesSyliusCustomerSupportPlugin/Resources/config/shop_routing.yml"
```### Update shema
```
php bin/console d:s:u -f
```### Load assets
```
php bin/console asset:install &&
php bin/console sylius:theme:asset:install &&
yarn install &&
yarn build &&
yarn encore dev &&
php bin/console ca:clear
```