Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bagisto/bagsito-bulk-add-to-cart
The Laravel eCommerce Bulk Add To Cart module allows the customer to add the bulk products to the cart with different quantities.
https://github.com/bagisto/bagsito-bulk-add-to-cart
bulk-add bulk-add-cart bulk-operation ecommerce laravel opensource
Last synced: 4 days ago
JSON representation
The Laravel eCommerce Bulk Add To Cart module allows the customer to add the bulk products to the cart with different quantities.
- Host: GitHub
- URL: https://github.com/bagisto/bagsito-bulk-add-to-cart
- Owner: bagisto
- License: mit
- Created: 2022-01-10T11:36:46.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T12:01:08.000Z (almost 3 years ago)
- Last Synced: 2024-04-24T15:13:35.752Z (7 months ago)
- Topics: bulk-add, bulk-add-cart, bulk-operation, ecommerce, laravel, opensource
- Language: Blade
- Homepage: https://bit.ly/339vezo
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG for v1.3.x.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
Bagisto Bulk Add to Cart add-on allow customers to upload bulk data to cart.
## Requirements:
- **Bagisto**: v1.3.2.
## Installation with composer:
- Run the following command
```
composer require bagisto/bagisto-bulk-add-to-cart
```
-Goto vendor/bagisto/bagisto-bulkaddtocart and copy the storage folder and merge it into project root directory.- Run these commands below to complete the setup
```
composer dump-autoload
``````
php artisan route:cache
php artisan optimize
```
```
php artisan vendor:publish --force-> Press the number before BulkAddToCartServiceProvider and then press enter to publish all assets and configurations.
```## Installation without composer:
- Unzip the respective extension zip and then merge "packages" and "storage" folders into project root directory.
- Goto config/app.php file and add following line under 'providers'```
Webkul\BulkAddToCart\Providers\BulkAddToCartServiceProvider::class
```- Goto composer.json file and add following line under 'psr-4'
```
"Webkul\\BulkAddToCart\\": "packages/Webkul/BulkAddToCart/src"
```- Run these commands below to complete the setup
```
composer dump-autoload
``````
php artisan route:cache
``````
php artisan optimize
``````
php artisan vendor:publish --force-> Press the number before BulkAddToCartServiceProvider and then press enter to publish all assets and configurations.
```> That's it, now just execute the project on your specified domain.