{"id":19153088,"url":"https://github.com/bagisto/bagisto-bulk-upload","last_synced_at":"2025-08-22T00:31:03.384Z","repository":{"id":41393649,"uuid":"265175023","full_name":"bagisto/bagisto-bulk-upload","owner":"bagisto","description":"The Laravel eCommerce Bulk Upload allows the admin to create and add a bulk number of products into Bagisto online store.","archived":false,"fork":false,"pushed_at":"2024-01-24T06:40:19.000Z","size":282,"stargazers_count":20,"open_issues_count":46,"forks_count":25,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-04-25T23:43:46.680Z","etag":null,"topics":["bulk-operation","bulk-upload","bulkimport","ecommerce","hacktoberfest","hacktoberfest2020","laravel","opensource"],"latest_commit_sha":null,"homepage":"https://bit.ly/3zRLSzw","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bagisto.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG for v1.3.x.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-05-19T07:22:06.000Z","updated_at":"2024-04-12T15:39:13.000Z","dependencies_parsed_at":"2024-01-23T21:20:20.649Z","dependency_job_id":"174c8b52-7d7c-4ee7-9eff-53ca0df0fd3c","html_url":"https://github.com/bagisto/bagisto-bulk-upload","commit_stats":{"total_commits":57,"total_committers":9,"mean_commits":6.333333333333333,"dds":0.5087719298245614,"last_synced_commit":"53f9f41b089423e9ba66f1acf183ce72c620fbbd"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bagisto%2Fbagisto-bulk-upload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bagisto%2Fbagisto-bulk-upload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bagisto%2Fbagisto-bulk-upload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bagisto%2Fbagisto-bulk-upload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bagisto","download_url":"https://codeload.github.com/bagisto/bagisto-bulk-upload/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230542288,"owners_count":18242332,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bulk-operation","bulk-upload","bulkimport","ecommerce","hacktoberfest","hacktoberfest2020","laravel","opensource"],"created_at":"2024-11-09T08:20:45.934Z","updated_at":"2025-08-22T00:31:03.369Z","avatar_url":"https://github.com/bagisto.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## ⚠️ Disclaimer\n\nThis repository is no longer maintained as the bulk upload feature is already available in the core.\n\nFor the latest updates and features, please refer to the main [core](https://github.com/bagisto/bagisto) repository.\n\n# Bagisto Bulk Upload\n\n[![Latest Stable Version](http://poser.pugx.org/bagisto/bagisto-bulk-upload/v)](https://packagist.org/packages/bagisto/bagisto-bulk-upload) [![Total Downloads](http://poser.pugx.org/bagisto/bagisto-bulk-upload/downloads)](https://packagist.org/packages/bagisto/bagisto-bulk-upload) [![License](http://poser.pugx.org/bagisto/bagisto-bulk-upload/license)](https://packagist.org/packages/bagisto/bagisto-bulk-upload)\n\nBy using this add-on, the admin can mass/bulk upload products of all types: simple, configurable, virtual, grouped, bundle, downloadable, booking.\n\nIt packs in lots of demanding features that allows your business to scale in no time:\n\n- Product can be upload by CSV / XLS files.\n- Data profile creation feature for admin.\n- Each attribute has a different column.\n- Image attachment with the product within CSV/XLS.\n- If there is any error in the CSV / XLS file, then products will not be uploaded and hence customer/admin will come to know about the error.\n\n## Requirements:\n\n- **Bagisto**: v1.3.3\n\n## Installation with composer:\n- Run the following command\n```\ncomposer require bagisto/bagisto-bulk-upload\n```\n\n- Goto vendor/bagisto/bagisto-bulkupload and copy the storage folder and merge it into the root of your project.\n\n- Goto config/concord.php file and add following line under 'modules'\n```php\n\\Webkul\\Bulkupload\\Providers\\ModuleServiceProvider::class\n```\n\n- Run these commands below to complete the setup\n```\ncomposer dump-autoload\n```\n\n```\nphp artisan migrate\nphp artisan storage:link\nphp artisan route:cache\nphp artisan config:cache\nphp artisan vendor:publish\n```\n-\u003e Press 0 and then press enter to publish all assets and configurations.\n\n## Installation without composer:\n\n- Unzip the respective extension zip and then merge \"packages\" and \"storage\" folders into project root directory.\n- Goto config/app.php file and add following line under 'providers'\n\n```\nWebkul\\Bulkupload\\Providers\\BulkUploadServiceProvider::class\n```\n\n- Goto composer.json file and add following line under 'psr-4'\n\n```\n\"Webkul\\\\Bulkupload\\\\\": \"packages/Webkul/Bulkupload/src\"\n```\n\n- Goto config/concord.php file and add following line under 'modules'\n\n```php\n\\Webkul\\Bulkupload\\Providers\\ModuleServiceProvider::class\n```\n\n- Run these commands below to complete the setup\n\n```\ncomposer dump-autoload\n```\n\n```\nphp artisan migrate\n```\n\n```\nphp artisan storage:link\n```\n\n```\nphp artisan route:cache\n```\n\n```\nphp artisan vendor:publish\n\n-\u003e Press 0 and then press enter to publish all assets and configurations.\n```\n\n\u003e That's it, now just execute the project on your specified domain.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbagisto%2Fbagisto-bulk-upload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbagisto%2Fbagisto-bulk-upload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbagisto%2Fbagisto-bulk-upload/lists"}