diff --git a/app/DataTables/WorklistDataTable.php b/app/DataTables/WorklistDataTable.php index c000859..6e049b3 100644 --- a/app/DataTables/WorklistDataTable.php +++ b/app/DataTables/WorklistDataTable.php @@ -50,7 +50,7 @@ public function dataTable(QueryBuilder $query): EloquentDataTable }) ->editColumn('show_study', function (Study $study) { $btn = 'Show'; - $btn .= ' Edit'; + $btn .= 'Edit'; $btn .= ' Delete'; return $btn; diff --git a/resources/views/staff/history/edit.blade.php b/resources/views/staff/history/edit.blade.php index 9f8ad0a..6bb4fef 100644 --- a/resources/views/staff/history/edit.blade.php +++ b/resources/views/staff/history/edit.blade.php @@ -1,51 +1,115 @@ - - -

- {{ __('History') }} -

-
+@php + $configData = App\Services\ThemeHelper::appClasses(); + $container = 'container-fluid'; + $containerNav = 'container-fluid'; + /* + $isNavbar = false; + $navbarType = 'layout-navbar-hidden'; + $isMenu = false; + $navbarHideToggle = false; + */ +@endphp -
-
+@extends('layouts.layoutMaster') -
-

Clinical Information

+@section('title', 'Worklist') -
- @csrf - -
Clinical History
-
+@section('vendor-style') + @vite([ + 'resources/fontawesome/scss/fontawesome.scss', + 'resources/fontawesome/scss/light.scss', + ]) + +@endsection + +@section('vendor-script') + + + + +@endsection + +@section('page-script') + + +@endsection + +@section('content') +

+ {{ __('History') }} +

+ +

Clinical Information

+ + + @csrf + +
Clinical History
+
-
- +
+ -
surgical history
-
+
surgical history
+
-
- +
+ -
lab results
-
+
lab results
+
-
- +
+ -
clinical diagnosis
-
+
clinical diagnosis
+
-
- - - - -
-
-
- + + + + +@endsection + + + + + + + + + + + + + + + + + + + diff --git a/resources/views/staff/history/view.blade.php b/resources/views/staff/history/view.blade.php index f84f5eb..d328bbe 100644 --- a/resources/views/staff/history/view.blade.php +++ b/resources/views/staff/history/view.blade.php @@ -1,46 +1,58 @@ - - -

- {{ __('History View') }} -

-
+@php + $configData = App\Services\ThemeHelper::appClasses(); + $container = 'container-fluid'; + $containerNav = 'container-fluid'; + /* + $isNavbar = false; + $navbarType = 'layout-navbar-hidden'; + $isMenu = false; + $navbarHideToggle = false; + */ +@endphp -
-
+@extends('layouts.layoutMaster') -
-

Clinical Information

+@section('title', 'Worklist') -
Clinical History
-
- {{ $details->clinical_history }} -
- +@section('vendor-style') + @vite([ + 'resources/fontawesome/scss/fontawesome.scss', + 'resources/fontawesome/scss/light.scss', + ]) + +@endsection -
surgical_history
-
- {{ $details->surgical_history }} -
- +@section('content') +

+ {{ __('History') }} +

-
lab_results
-
- {{ $details->lab_results }} -
- - -
clinical_diagnosis
-
- {{ $details->clinical_diagnosis }} -
- - - @can(\App\Models\Enums\Permission::StudyHistoryEdit) - Edit - @endcan - -
+

Clinical Information

+
Clinical History
+
+
{!! $details->clinical_history !!}
-
- + + +
surgical history
+
+
{!! $details->surgical_history !!}
+
+ + +
lab results
+
+
{!! $details->lab_results !!}
+
+ + +
clinical diagnosis
+
+
{!! $details->clinical_diagnosis !!}
+
+ + +@endsection