Skip to content

Commit fa4bf36

Browse files
committed
release 5.1
Release 5.1 (mod)
1 parent c6e0647 commit fa4bf36

File tree

211 files changed

+126635
-4168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+126635
-4168
lines changed

.editorconfig

100644100755
File mode changed.

.env-sqlite

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
APP_NAME=MyHealth
2+
APP_VER=5.0
3+
APP_ENV=local
4+
APP_KEY=base64:imzYKbjzGDvQATFxdhstEh+ua9lHTC0djgRDBVB0yEk=
5+
APP_DEBUG=true
6+
APP_URL=http://localhost
7+
8+
LOG_CHANNEL=stack
9+
10+
DB_CONNECTION=sqlite
11+
DB_HOST=localhost
12+
DB_PORT=3306
13+
DB_DATABASE=/home/vagrant/sites/MyHealth-master/database/myhealth.sqlite
14+
15+
BROADCAST_DRIVER=log
16+
CACHE_DRIVER=file
17+
QUEUE_CONNECTION=sync
18+
SESSION_DRIVER=file
19+
SESSION_LIFETIME=120
20+
21+
REDIS_HOST=127.0.0.1
22+
REDIS_PASSWORD=null
23+
REDIS_PORT=6379
24+
25+
MAIL_DRIVER=smtp
26+
MAIL_HOST=smtp.mailtrap.io
27+
MAIL_PORT=2525
28+
MAIL_USERNAME=null
29+
MAIL_PASSWORD=null
30+
MAIL_ENCRYPTION=null
31+
32+
AWS_ACCESS_KEY_ID=
33+
AWS_SECRET_ACCESS_KEY=
34+
AWS_DEFAULT_REGION=us-east-1
35+
AWS_BUCKET=
36+
37+
PUSHER_APP_ID=
38+
PUSHER_APP_KEY=
39+
PUSHER_APP_SECRET=
40+
PUSHER_APP_CLUSTER=mt1
41+
42+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
43+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.env.example

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ LOG_CHANNEL=stack
99
DB_CONNECTION=mysql
1010
DB_HOST=127.0.0.1
1111
DB_PORT=3306
12-
DB_DATABASE=homestead
13-
DB_USERNAME=homestead
14-
DB_PASSWORD=secret
12+
DB_DATABASE=medical
13+
DB_USERNAME=mint
14+
DB_PASSWORD=C7wx17rs
1515

1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file

.gitattributes

100644100755
File mode changed.

.gitignore

100644100755
File mode changed.

Release Notes

100644100755
Lines changed: 51 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,53 @@
11
Release Notes
2+
Version 5.1
3+
-- Added abnormal flag in newlab index blade view
4+
-- Added auth:check for session timeout, to index, create & edit function in all controllers
5+
-- Added patient detail to patient model (fullname, birthdate, insurance, memberid) -
6+
-- migrate db first
7+
-- Added fullname and birthdate to print and pdf functions in affected modules - wellness, imaging,
8+
-- meds, vaccines, labs, surgeries
9+
-- Added location, hospital, active (flag), doctorRating, staffRating, services to Doctor model -
10+
-- migrate db first
11+
-- updated help function in app.blade view
12+
-- Replaced patient name with patient ID in all models and applied to controllers/views
13+
-- Convert PatientID to numeric value
14+
-- Restrict profile results to authenticated users
15+
-- Removed app/filter modules (using datatables)
16+
-- turned off search/paging feature for Patient index view
17+
-- Upgraded to Laravel v7
218

3-
version 3.1 (commit 20191123)
419

5-
-- Reformatted home/welcme page and added centerPage style sheet
20+
21+
Version 4.2 (commit 20220331)
22+
-- Added Authentication to filter rows for current user
23+
24+
25+
Version 4.1
26+
-- Converted to Datatables
27+
-- Deleted Labtests table and updated Migration
28+
-- todo: fix getSpecs (imaging, surgery, wellness)
29+
30+
Version 4
31+
-- Add comments to Family History table
32+
-- Add version to About menu item
33+
-- Standardize Pagination
34+
-- Fix pagination link color
35+
-- clean up css
36+
-- added popovers
37+
38+
Version 3 (commit 20200310)
39+
-- Menu Updates (and associated MVCs):
40+
-- Removed Reports
41+
-- Added Top Menu (Profile, health records)
42+
-- Added profile menu item 'family history'
43+
-- Added health records menu items 'imaging', 'immunization', 'medications'
44+
-- Added text search and column sorting to Lab and Immunization views
45+
-- Removed BP and weight from Surgery views
46+
-- Improved field edits
47+
48+
version 2.2 (commit 20191123)
49+
50+
-- Reformatted home/welcome page and added centerPage style sheet
651
-- Fixed topPage style sheet
752
-- Iconized views and menus
853
-- widened doctor and doctor specialty fields
@@ -19,7 +64,7 @@ Work-In-Progress
1964
-- medications
2065

2166

22-
Version 3 (commit 20191031)
67+
Version 2.1 (commit 20191031)
2368

2469
-- Added Doctor Specialty auto-populate
2570
-- Added Menu to home page
@@ -41,4 +86,6 @@ Version 2 (commit 20190812)
4186
-- Added Create view edits for weight and value
4287
-- ReSize db
4388
-- Edit views: add dropdown for patientName/doctorName
44-
-- Index views: add scrollable text box
89+
-- Index views: add scrollable text box
90+
91+
Version 1 (initial)

app/Console/Kernel.php

100644100755
File mode changed.

app/Doctor.php

100644100755
File mode changed.

app/Exceptions/Handler.php

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Exceptions;
44

5-
use Exception;
5+
use Throwable;
66
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
77

88
class Handler extends ExceptionHandler
@@ -32,7 +32,7 @@ class Handler extends ExceptionHandler
3232
* @param \Exception $exception
3333
* @return void
3434
*/
35-
public function report(Exception $exception)
35+
public function report(Throwable $exception)
3636
{
3737
parent::report($exception);
3838
}
@@ -44,7 +44,7 @@ public function report(Exception $exception)
4444
* @param \Exception $exception
4545
* @return \Illuminate\Http\Response
4646
*/
47-
public function render($request, Exception $exception)
47+
public function render($request, Throwable $exception)
4848
{
4949
return parent::render($request, $exception);
5050
}

app/Famhist.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
namespace App;
4+
5+
use Illuminate\Database\Eloquent\Model;
6+
7+
class Famhist extends Model
8+
{
9+
//
10+
}

0 commit comments

Comments
 (0)