├── README.md
├── bootstrap
└── app.php
├── controllers
├── Controller.php
├── CustomerController.php
├── EmployeeController.php
├── HomeController.php
├── ItemsSoldController.php
├── LoginController.php
├── MerchantController.php
├── ProductController.php
├── ProfileController.php
├── RateController.php
├── StockController.php
├── TableController.php
├── TransactionController.php
└── UserController.php
├── helpers
├── ActivitySummary.php
├── Auth.php
└── ValidateParams.php
├── model
├── Customer.php
├── Employee.php
├── ItemsSold.php
├── Merchant.php
├── Model.php
├── Product.php
├── Rate.php
├── Stock.php
├── Transaction.php
└── User.php
├── public
├── .htaccess
├── dist
│ ├── css
│ │ ├── work.css
│ │ └── work.min.css
│ ├── favicon-32x32.png
│ └── js
│ │ ├── page.js
│ │ ├── work.js
│ │ └── work.min.js
├── index.php
└── vendor
│ ├── bootstrap-social
│ ├── bootstrap-social.css
│ ├── bootstrap-social.less
│ └── bootstrap-social.scss
│ ├── bootstrap
│ ├── css
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
│ ├── datatables-editor
│ ├── css
│ │ ├── dataTables.editor.css
│ │ ├── editor.bootstrap.css
│ │ ├── editor.bootstrap.min.css
│ │ ├── editor.bootstrap4.css
│ │ ├── editor.bootstrap4.min.css
│ │ ├── editor.dataTables.css
│ │ ├── editor.dataTables.min.css
│ │ ├── editor.foundation.css
│ │ ├── editor.foundation.min.css
│ │ ├── editor.jqueryui.css
│ │ ├── editor.jqueryui.min.css
│ │ ├── editor.semanticui.css
│ │ ├── editor.semanticui.min.css
│ │ └── scss
│ │ │ ├── bubble.scss
│ │ │ ├── datatable.scss
│ │ │ ├── datetime.scss
│ │ │ ├── envelope.scss
│ │ │ ├── fields.scss
│ │ │ ├── inline.scss
│ │ │ ├── lightbox.scss
│ │ │ ├── main.scss
│ │ │ ├── mixins.scss
│ │ │ ├── processing.scss
│ │ │ └── upload.scss
│ └── js
│ │ ├── dataTables.editor.js
│ │ ├── dataTables.editor.min.js
│ │ ├── editor.bootstrap.js
│ │ ├── editor.bootstrap.min.js
│ │ ├── editor.bootstrap4.js
│ │ ├── editor.bootstrap4.min.js
│ │ ├── editor.foundation.js
│ │ ├── editor.foundation.min.js
│ │ ├── editor.jqueryui.js
│ │ ├── editor.jqueryui.min.js
│ │ ├── editor.semanticui.js
│ │ └── editor.semanticui.min.js
│ ├── datatables-plugins
│ ├── dataTables.bootstrap.css
│ ├── dataTables.bootstrap.js
│ ├── dataTables.bootstrap.min.js
│ ├── dataTables.buttons.min.js
│ ├── dataTables.select.min.js
│ ├── index.html
│ └── select.bootstrap.min.css
│ ├── datatables-responsive
│ ├── dataTables.responsive.css
│ ├── dataTables.responsive.js
│ └── dataTables.responsive.scss
│ ├── datatables
│ ├── css
│ │ ├── dataTables.bootstrap.css
│ │ ├── dataTables.bootstrap.min.css
│ │ ├── dataTables.bootstrap4.css
│ │ ├── dataTables.bootstrap4.min.css
│ │ ├── dataTables.foundation.css
│ │ ├── dataTables.foundation.min.css
│ │ ├── dataTables.jqueryui.css
│ │ ├── dataTables.jqueryui.min.css
│ │ ├── dataTables.material.css
│ │ ├── dataTables.material.min.css
│ │ ├── dataTables.semanticui.css
│ │ ├── dataTables.semanticui.min.css
│ │ ├── dataTables.uikit.css
│ │ ├── dataTables.uikit.min.css
│ │ ├── jquery.dataTables.css
│ │ ├── jquery.dataTables.min.css
│ │ └── jquery.dataTables_themeroller.css
│ ├── images
│ │ ├── Sorting icons.psd
│ │ ├── favicon.ico
│ │ ├── sort_asc.png
│ │ ├── sort_asc_disabled.png
│ │ ├── sort_both.png
│ │ ├── sort_desc.png
│ │ └── sort_desc_disabled.png
│ └── js
│ │ ├── dataTables.bootstrap.js
│ │ ├── dataTables.bootstrap.min.js
│ │ ├── dataTables.bootstrap4.js
│ │ ├── dataTables.bootstrap4.min.js
│ │ ├── dataTables.foundation.js
│ │ ├── dataTables.foundation.min.js
│ │ ├── dataTables.jqueryui.js
│ │ ├── dataTables.jqueryui.min.js
│ │ ├── dataTables.material.js
│ │ ├── dataTables.material.min.js
│ │ ├── dataTables.semanticui.js
│ │ ├── dataTables.semanticui.min.js
│ │ ├── dataTables.uikit.js
│ │ ├── dataTables.uikit.min.js
│ │ ├── jquery.dataTables.js
│ │ ├── jquery.dataTables.min.js
│ │ └── jquery.js
│ ├── flot-tooltip
│ ├── jquery.flot.tooltip.js
│ ├── jquery.flot.tooltip.min.js
│ └── jquery.flot.tooltip.source.js
│ ├── flot
│ ├── excanvas.js
│ ├── excanvas.min.js
│ ├── jquery.colorhelpers.js
│ ├── jquery.flot.canvas.js
│ ├── jquery.flot.categories.js
│ ├── jquery.flot.crosshair.js
│ ├── jquery.flot.errorbars.js
│ ├── jquery.flot.fillbetween.js
│ ├── jquery.flot.image.js
│ ├── jquery.flot.js
│ ├── jquery.flot.navigate.js
│ ├── jquery.flot.pie.js
│ ├── jquery.flot.resize.js
│ ├── jquery.flot.selection.js
│ ├── jquery.flot.stack.js
│ ├── jquery.flot.symbol.js
│ ├── jquery.flot.threshold.js
│ ├── jquery.flot.time.js
│ └── jquery.js
│ ├── font-awesome
│ ├── HELP-US-OUT.txt
│ ├── css
│ │ ├── font-awesome.css
│ │ ├── font-awesome.css.map
│ │ └── font-awesome.min.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── less
│ │ ├── animated.less
│ │ ├── bordered-pulled.less
│ │ ├── core.less
│ │ ├── extras.less
│ │ ├── fixed-width.less
│ │ ├── font-awesome.less
│ │ ├── icons.less
│ │ ├── larger.less
│ │ ├── list.less
│ │ ├── mixins.less
│ │ ├── path.less
│ │ ├── rotated-flipped.less
│ │ ├── screen-reader.less
│ │ ├── spinning.less
│ │ ├── stacked.less
│ │ └── variables.less
│ └── scss
│ │ ├── _animated.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _core.scss
│ │ ├── _extras.scss
│ │ ├── _fixed-width.scss
│ │ ├── _icons.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _mixins.scss
│ │ ├── _path.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _screen-reader.scss
│ │ ├── _spinning.scss
│ │ ├── _stacked.scss
│ │ ├── _variables.scss
│ │ └── font-awesome.scss
│ ├── images
│ ├── Sorting icons.psd
│ ├── favicon.ico
│ ├── sort_asc.png
│ ├── sort_asc_disabled.png
│ ├── sort_both.png
│ ├── sort_desc.png
│ └── sort_desc_disabled.png
│ ├── jquery
│ ├── jquery.js
│ └── jquery.min.js
│ ├── metisMenu
│ ├── metisMenu.css
│ ├── metisMenu.js
│ ├── metisMenu.min.css
│ └── metisMenu.min.js
│ ├── morrisjs
│ ├── morris.css
│ ├── morris.js
│ └── morris.min.js
│ ├── notify
│ └── notify.min.js
│ └── raphael
│ ├── raphael.js
│ └── raphael.min.js
├── routes
├── ApiRoutes.php
├── Route.php
├── ValidateRoutes.php
└── WebRoutes.php
├── sql
└── project5_6.sql
└── views
├── auth
└── login.php
├── components
├── header.php
├── menu.php
└── top-links.php
├── errors
└── 404.php
├── home.php
├── layouts
├── app.php
└── error.php
├── profile.php
└── table.php
/README.md:
--------------------------------------------------------------------------------
1 | # Stock-Management-System
2 |
3 | ## Screenshots
4 | ### Login
5 | 
6 | ### Dashboard
7 | 
8 | ### Profile
9 | 
10 | ### Records
11 | 
12 | ### Modifying Records
13 | 
14 |
15 | ## How to install
16 | 1. Add this lines in path/to/xampp/apache/conf/extra/httpd-vhosts.conf:
17 | ```
18 |