Skip to main content

Logistic Management System


Top Notch logistics is a web based solution designed for Freight, Courier and Transportation companies to streamline their processes, increase productivity, efficiency of work, and profitability of organizations. It’s an exceedingly adaptable and rich feature system, aiming to improve integration, automation, and communication with clients. Customer and Admin can access the Logistic Transport system through online portals and build in features of mobility.
Ongoing project at AGconsultraining Pvt. Upcoming product of AGConsultraining Pvt Ltd
§  Role of Responsibilities
·         Requirement Gathering with the competitor.
·         Front & Backend Deployment
·         Database Management
ΓΌ  Technology
·         PHP Laravel, Ajax, jQuery, Angular JS & JavaScript, Database MySQL

Comments

Popular posts from this blog

Python Program to Make a Simple Calculator

In this example you will learn to create a simple calculator that can add, subtract, multiply or divide depending upon the input from the user. Simple Calculator by Making Functions # Add Function for addition def add(x,y): return x+y # Subtraction Function def subtract(x,y): return x-y # Multiplication Function def multiply(x,y): return x*y # Division Function def divide(x,y): return x/y print("Select operation.") print("1.Add") print("2.Subtract") print("3.Multiply") print("4.Divide") # Take input from the user something like scanf in C language check =input("Enter choice(1/2/3/4):") num1 = int(input("Enter first number:")) num2 = int(input("Enter second number:")) if check=="1": print(num1," + ",num2," = ",add(num1,num2)) elif check=="2": print(num1," - ",num2," = ",subtract(num1,num2)) elif check=...