Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mohitsingla46/laravel-shoppingkart
A feature-rich Laravel shopping cart application that provides a complete e-commerce solution. This repository includes functionalities for product management, cart handling, order processing, and payment integration, making it easy to set up an online store with Laravel.
https://github.com/mohitsingla46/laravel-shoppingkart
admin-panel laravel-framework shopping
Last synced: 7 days ago
JSON representation
A feature-rich Laravel shopping cart application that provides a complete e-commerce solution. This repository includes functionalities for product management, cart handling, order processing, and payment integration, making it easy to set up an online store with Laravel.
- Host: GitHub
- URL: https://github.com/mohitsingla46/laravel-shoppingkart
- Owner: mohitsingla46
- Created: 2024-08-05T09:37:37.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-08-07T11:12:50.000Z (5 months ago)
- Last Synced: 2025-01-10T04:55:49.850Z (7 days ago)
- Topics: admin-panel, laravel-framework, shopping
- Language: JavaScript
- Homepage:
- Size: 17.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShoppingKart with Laravel
A basic ecommerce website with admin panel.
## Getting started
### Project configuration
Start by cloning this project on your workstation.
The next thing will be to install all the dependencies of the project.
```sh
cd ./laravel-shoppingKart
composer install
```Once the dependencies are installed, you can now configure your project by creating a new `.env` file containing the environment variables used for development.
```
cp .env.example .env
```Create database tables using migration command.
```
php artisan migrate
```Seed the default admin user with following command.
```
php artisan db:seed
```### Launch and discover
You are now ready to launch the Laravel application using the command below.
```
php artisan serve
```You can now head to `http://127.0.0.1:8000/` and see that it works.
## Contributing
Feel free to suggest an improvement, report a bug, or ask something.