The Milk Shop System is developed using php. The project is built to manage sales and transactions. To make a new transaction, fields such as:items type , qty needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning. In this tutorial useful for making a point of sales system for a small shops.
<html>
<head>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
</head>
<body>
<nav class="navbar navbar-dark bg-danger">
<span class="navbar-brand mb-1 h1"><h1>MilkBar Inventory Management</h1></span>
</nav>
</br>
<div class="row">
<div class="col-sm-5">
<div class="container">
<div class="p-3 mb-2 bg-success text-white"><h2>Item</h2></div>
<div class="panel-body bg-danger" style="background-color:red; color: white">
<form id="tbl-project">
<div class="panel-body bg-warning style="color: white">
<table class="table table-bordered" style="color: black">
<tr>
<td>
<input type="checkbox" name="pos" value="Strawberry">
<label>Strawberry</label>
</td>
<td>
<input type="number" name="qty" id="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="pos" value="Chocolate">
<label>Chocolate </label>
</td>
<td>
<input type="number" name="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="pos" value="Vanilla">
<label> Vanilla</label>
</td>
<td>
<input type="number" name="qty" size="10px">
</td>
<td>
<select class="form-control" id="option" name="option" placeholder="option" required>
<option value="">Please Select</option>
<option value="1">ML</option>
<option value="2">L</option>
</select>
</td>
</tr>
</table>
<div>
<button type="button" class="btn btn-info" >
i have attached the video link below. which will do this tutorials step by step.
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…
A Java Bean is a reusable software component that follows a specific set of conventions.…
Java provides a rich set of built-in methods for handling String operations efficiently. Since strings…