diff --git a/resources/views/staff/history/partials/_history-item.blade.php b/resources/views/staff/history/partials/_history-card.blade.php similarity index 100% rename from resources/views/staff/history/partials/_history-item.blade.php rename to resources/views/staff/history/partials/_history-card.blade.php diff --git a/resources/views/staff/history/partials/_history.blade.php b/resources/views/staff/history/partials/_history.blade.php index d88822d..b7b4f6c 100644 --- a/resources/views/staff/history/partials/_history.blade.php +++ b/resources/views/staff/history/partials/_history.blade.php @@ -1,15 +1,15 @@ @if (!blank($details->clinical_history)) - @include('staff.history.partials._history', ['title' => 'Clinical History', 'content' => $details->clinical_history]) + @include('staff.history.partials._history-card', ['title' => 'Clinical History', 'content' => $details->clinical_history]) @endif @if (!blank($details->surgical_history)) - @include('staff.history.partials._history', ['title' => 'Surgical History', 'content' => $details->surgical_history]) + @include('staff.history.partials._history-card', ['title' => 'Surgical History', 'content' => $details->surgical_history]) @endif @if (!blank($details->lab_results)) - @include('staff.history.partials._history', ['title' => 'Lab Results', 'content' => $details->lab_results]) + @include('staff.history.partials._history-card', ['title' => 'Lab Results', 'content' => $details->lab_results]) @endif @if (!blank($details->clinical_diagnosis)) - @include('staff.history.partials._history', ['title' => 'Clinical Diagnosis', 'content' => $details->clinical_diagnosis]) + @include('staff.history.partials._history-card', ['title' => 'Clinical Diagnosis', 'content' => $details->clinical_diagnosis]) @endif