Explorar el Código

added claims resolver view

unknown hace 4 años
padre
commit
32c0c396dd
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      app/Http/Controllers/PatientController.php

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

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