This is a team project that features an online pharmacy system with different roles (Pharmacy Owner, Doctor, Client , Admin) using Laravel. Clients can make orders using an api and orders have a cycle until it reaches the client.
Nouran Samy - Zeyad Saleh - Muhammad Aladdin - Ahmed Abdelhamid
You should have node
and composer
installed. If you don't, install node from here and composer from here.
- Download the zipped file and unzip it or Clone it
sh git clone https://github.com/zeyadsaleh/Pharmacy_System.git
- cd inside the project
cd Pharmacy_System
- Run this command to download composer packages
composer install
- Run this command to download node packages
npm install
- Create a copy of your .env file
cp .env.example .env
- Generate an app encryption key
php artisan key:generate
- Create an empty database for our application
- In the .env file, add database information to allow Laravel to connect to the database
- Migrate the database
php artisan migrate
- Seed the database
php artisan db:seed
- Run the Schedule
php artisan schedule:run
- Open up the server
php artisan serve
- Open your browser on this url
http://localhost:8000
MIT License
Copyright (c) 2020 OS40
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.