|
@@ -28,8 +28,8 @@ class NoteController extends Controller
|
|
|
public function dashboard(Request $request, Client $patient, Note $note)
|
|
|
{
|
|
|
$pros = $this->pros;
|
|
|
- $noteSections = $note->sections;
|
|
|
- $allSections = SectionTemplate::where('is_active', true)->get();
|
|
|
+ $noteSections = [];// $note->sections;
|
|
|
+ $allSections = []; //SectionTemplate::where('is_active', true)->get();
|
|
|
foreach ($allSections as $section) {
|
|
|
$section->used = false;
|
|
|
foreach ($noteSections as $noteSection) {
|