Build Status Total Downloads Latest Stable Version License

Database

Database queries can be found in the Database folder by name :

klinik_db_database.sql

Quick Start

1. Install Dependencies

composer install

2. Install JS Dependencies

npm install

3. Watch Files in Command 1

npm run watch

4. Running PHP in Command 2

php artisan serve

Endpoints

The table is 4 => patients, doctors, medicines, medicalrecords

The command of API for all tables are the same, this is example of commands for API of "patients" :

- List all patients with links and meta

GET api/patients

- Get single patients

GET api/patient/{id}

- Delete article

DELETE api/patient/{id}

- Add article

POST api/patient

- Update article

PUT api/patient/{id}