A complete web-based Cupcake Order Management System built for bakeries and small businesses to manage orders, customers, inventory, and staff roles — all in one place. This project supports self-service ordering, role-based logins, and beautiful UI with Tailwind CSS.
Clone the repo
```bash git clone https://github.com/your-username/sarahs-cupcake-system.git
Import the SQL database
Use phpMyAdmin or any MySQL client
Import cupcake_system.sql
Open includes/db.php and update your DB credentials
Place project in htdocs (XAMPP/Laragon/etc.)
Visit http://localhost/sarahs-cupcake-system/
💡 Use Case Perfect for:
. Small bakeries
. Home-based cupcake businesses
. Students building capstone or web dev projects
👨💻 Author Natnael22sds GitHub: https://github.com/Natnael22sds
📸 Screenshots
sarahs-cupcake-system/
├── index.php # Landing or login redirect
├── login.php # Secure login page
├── dashboard/
│ ├── employee_dashboard.php # Dashboard for employees
│ ├── manager_dashboard.php # Dashboard for managers
│ ├── delivery_dashboard.php # Dashboard for delivery staff
│ └── common/
│ ├── sidebar.php # Common sidebar for all dashboards
│ ├── header.php # Page header and navigation
│ └── footer.php # Footer layout
├── orders/
│ ├── new_order.php # Order entry form
│ ├── order_list.php # List of all orders
│ └── order_details.php # Detailed order view
├── customers/
│ └── manage_customers.php # View and manage customer info
├── inventory/
│ ├── stock_list.php # Current stock items
│ ├── add_stock.php # Add new stock items
│ └── stock_log.php # Stock change history
├── reports/
│ └── daily_report.php # Daily business reports
├── includes/
│ └── db.php # Database connection config
├── assets/
│ ├── css/ # Tailwind CSS and custom styles
│ ├── js/ # JavaScript files
│ └── images/ # Product and UI images
└── README.md # Project documentation
👨💻 Author Natnael22sds GitHub profile