Follow these instructions to set up and run the project locally on your Machine.
- 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
url: http://127.0.0.1:8000/login
Admin:
Password:
tauseed
use App\Models\User;
User::create([
'name' => 'Admin',
'email' => '[email protected]',
'password' => bcrypt('password'),
'role_id' => 1
]);