Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/snykk/laracoffee

Laracoffee - an e-commerce website for coffee shops, developed using Laravel 9 and Bootstrap CSS for a smooth and responsive online shopping experience.
https://github.com/snykk/laracoffee

bootstrap bootstrap5 coffeeshop e-commerce e-commerce-website laravel laravel-application laravel-project laravel-website laravel9 web-application

Last synced: about 1 month ago
JSON representation

Laracoffee - an e-commerce website for coffee shops, developed using Laravel 9 and Bootstrap CSS for a smooth and responsive online shopping experience.

Awesome Lists containing this project

README

        

# Laracoffee

Laracoffee is a web application built using the Laravel framework that allows users to browse and order coffee products online.

## Table of Contents

- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
- [UI](#ui)
- [In Summary](#in-summary)

## Features
### Admin
- Authentication Page: This page allows admin to log in.
- Dashboard Page: Admin have access to a dashboard for an overview of system activities.
- Customer Page: Provides a list of registered customer details for admin to view.
- Log Transaction Page: Admin can monitor transaction logs.
- Product Page: Admin can view, add, edit, and remove product details.
- Product Review Page: Admin can view product reviews.
- Profile Page: Admin can edit their profile data and change passwords if needed.
- Order Page: Admin can manage user orders, including changing order status (rejected, done, approved).
- Order History: Admin can review the history of orders.

### General User
- Authentication and Registration Page: Users can log in or register for an account.
- Home Page: The main landing page for users.
- Point Page: Users can track loyalty points earned through transactions.
- Profile Page: Users can edit their profile data and change passwords if needed.
- Product Page: Users can purchase products, view product details, and leave product reviews (after completing the purchase).
- Order Page: Users can view and manage their shopping cart, including editing and canceling orders.
- Order History: Users can review their order history.
## Installation

To run Laracoffee locally, follow these steps:

1. Clone this repository:

```bash
git clone https://github.com/snykk/Laracoffee.git
```
2. Change to the project directory
```bash
cd laracoffee
```
3. Install the project dependencies
```bash
composer install
npm install
```
4. Copy the .env.example file to .env and configure your environment variables, including your database settings and any other necessary configuration.
```bash
copy .env.example .env
```
5. Generate an application key
```bash
php artisan key:generate
```

6. Create a symbolic link for the storage directory
```bash
php artisan storage:link
```
8. Set the filesystem disk to public in the .env file
```bash
FILESYSTEM_DISK=public
```
6. Migrate the database
```bash
php artisan migrate
```
7. Seed the database with sample data (optional):
```bash
php artisan db:seed
```
8. Start the development server
```bash
php artisan serve
```
9. Access the application in your browser at http://localhost:8000

## Usage
- Visit the website and register for an account.
- Browse the available coffee products, add them to your cart, and proceed to checkout.
- Make a test order to see the order processing workflow.
- Access the admin panel by log in with admin credentials (if seeded).
- Manage products and orders through the admin panel.

## Contributing
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
1. Fork the repository.
2. Create a new branch for your feature or bugfix: `git checkout -b feature-name`.
3. Make your changes and commit them: `git commit -m 'Add some feature'`.
4. Push to your fork: `git push origin feature-name`.
5. Create a pull request on the original repository.

## License
This project is licensed under the [MIT License](https://github.com/snykk/Laracoffee/blob/master/LICENSE).

## UI

### Admin Page
##### Dashboard
!["Dashboard"](/storage/assets/Admin/dashboard.PNG)
##### Customer Lists
!["Customer Lists"](/storage/assets/Admin/customer_lists.PNG)
##### Transaction Lists
!["Transaction Lists"](/storage/assets/Admin/transactions.PNG)
##### Product Page
!["Product"](/storage/assets/Admin/product.PNG)
##### Add Product
!["Add Product"](/storage/assets/Admin/add_product.PNG)

##### Edit Product
!["Edit Product"](/storage/assets/Admin/edit_product.PNG)
##### Detail Order
!["Edit Product"](/storage/assets/Admin/detail_order.PNG)
##### History Order
!["History Order"](/storage/assets/Admin/history_order.PNG)

### General User
##### Registration Page
!["Registration Page"](/storage/assets/User/registration.PNG)
##### Authentication Page
!["Authentication Page"](/storage/assets/User/authentication.PNG)
##### Home
!["Home"](/storage/assets/User/home.PNG)
##### User Point
!["User Point"](/storage/assets/User/user_point.PNG)
##### Detail Profile
!["Detail Profile"](/storage/assets/User/profile.PNG)
##### Edit Profile
!["Edit Profile"](/storage/assets/User/edit_profile.PNG)
##### Product Page
!["Product"](/storage/assets/User/product.PNG)
##### Product Detail
!["Product Detail"](/storage/assets/User/product_detail.PNG)
##### Make an Order
!["Order Page"](/storage/assets/User/make_an_order.PNG)
##### List of Order
!["List of Orders"](/storage/assets/User/order_list.PNG)
##### Upload Proof of Transfer
!["Proof of Transfer"](/storage/assets/User/upload_bukti.PNG)
##### Order Detail
!["Order Detail"](/storage/assets/User/order_detail.PNG)
##### Edit Order
!["Edit Order"](/storage/assets/User/edit_order.PNG)
##### Submit a Review
!["Submit a Review"](/storage/assets/User/submit_review.PNG)

## In Summary
Feel free to explore the application and give it a try yourself. If you have any questions or encounter any issues, please don't hesitate to reach out. Your feedback is greatly appreciated. Happy exploring!!!