|
@@ -194,6 +194,18 @@ class PracticeManagementController extends Controller
|
|
|
return view('app.practice-management.pro-availability', compact('pros','generalAvailabilities', 'specificAvailabilities', 'specificUnavailabilities','events'));
|
|
|
}
|
|
|
|
|
|
+ public function loadAvailability(Request $request){
|
|
|
+ $performer = $this->performer();
|
|
|
+ $pro = $performer->pro;
|
|
|
+
|
|
|
+ if($request->get('pro_uid')){
|
|
|
+ $proUid = $request->get('pro_uid');
|
|
|
+ $pro = Pro::where('uid', $proUid)->first();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
// video call page (RHS)
|
|
|
// generic call handle (no uid)
|
|
|
// specific call handle (uid of client)
|