MIS-203 Simple POS

Just a Project in MIS-203 Business Systems

DB Schema

System Requirements

  • PHP 8^
  • Apache 2
  • Laravel 8^
  • Composer
  • Node JS
  • Mysql
  • Git

Installation

Make sure you already installed git, apache, php & composer before doing this
  1. Clone the source code to your machine
git clone https://github.com/EleaFederio/mis_mini_post_backend.git
  1. go to project directory
cd mis_mini_post_backend
  1. install dependencies using composer
composer install
  1. create .env file
copy .env.example .env
  1. generate app key
php artisan key:generate
  1. create a table name mis_pos in your database.
  2. in you .env file find DB_DATABASE and set it to "mis_pos". DB_TABLE need to be same as the database you create in step 5
DB_DATABASE=mis_pos
  1. generate migration (Make sure your database running)
php artisan migrate
  1. seed a data (this is data for branches and categories)
php artisan db:seed
  1. run the system
php artisan serve
  1. if there is no conflict with you network you can find the API running at localhost:8000
  2. Install the Front End