Skip to content

Latest commit

 

History

History
82 lines (61 loc) · 1.13 KB

README.md

File metadata and controls

82 lines (61 loc) · 1.13 KB

Hospital Management System

Front End

Front End

Front End

Back End

Back End

Database Tables

Database Tables

Installation

Follow these instructions to set up and run the project locally on your Machine.

Prerequisites

Installation

  1. Clone the repository:
   git clone https://github.com/tauseedzaman/hospitalMS.git
  cd hospitalMS
composer install
cp .env.example .env
php artisan key:generate
php artisan storage:link
php artisan migrate:fresh --seed
php artisan serve

Admin Credentials

url: http://127.0.0.1:8000/login

Admin:

Password:

tauseed

Add Admin

use App\Models\User;

User::create([
    'name' => 'Admin',
    'email' => '[email protected]',
    'password' => bcrypt('password'),
    'role_id' => 1 
]);

If you like our project please leave a star ❤