Skip to content

Hospital management system with laravel and livewire.

Notifications You must be signed in to change notification settings

dsnalzami/hospitalMS

 
 

Repository files navigation

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 ❤

About

Hospital management system with laravel and livewire.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Blade 52.6%
  • PHP 39.8%
  • HTML 7.0%
  • PowerShell 0.6%