Browse Source

added claims resolver view

unknown 4 years ago
parent
commit
21152e2676
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Controllers/PatientController.php

+ 2 - 2
app/Http/Controllers/PatientController.php

@@ -30,9 +30,9 @@ class PatientController extends Controller
     {
     {
         $data = [
         $data = [
             'dog' => 'bark',
             'dog' => 'bark',
-            'patient', $patient,
+            'patient', $patient
         ];
         ];
-        return view('app.patient.claims-resolver', $data);
+        return view('app.patient.claims-resolver', compact('patient'));
     }
     }
 
 
     public function dashboard(Request $request, Client $patient )
     public function dashboard(Request $request, Client $patient )