|
@@ -58,10 +58,16 @@ class my_clients_SINGLE_Controller extends Controller
|
|
|
return response()->view('pro/my_clients_SINGLE/ACTION_removeTeam', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
}
|
|
|
|
|
|
- // GET /my_clients/view/{uid}/ACTION_putMcp
|
|
|
- public function ACTION_putMcp(Request $request, $uid) {
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_assignMcp
|
|
|
+ public function ACTION_assignMcp(Request $request, $uid) {
|
|
|
$record = DB::table('client')->where('uid', $uid)->first();
|
|
|
- return response()->view('pro/my_clients_SINGLE/ACTION_putMcp', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_assignMcp', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_changeMcp
|
|
|
+ public function ACTION_changeMcp(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_changeMcp', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
}
|
|
|
|
|
|
// GET /my_clients/view/{uid}/ACTION_removeMcp
|
|
@@ -70,16 +76,58 @@ class my_clients_SINGLE_Controller extends Controller
|
|
|
return response()->view('pro/my_clients_SINGLE/ACTION_removeMcp', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
}
|
|
|
|
|
|
- // GET /my_clients/view/{uid}/ACTION_putAlly
|
|
|
- public function ACTION_putAlly(Request $request, $uid) {
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_assignCm
|
|
|
+ public function ACTION_assignCm(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_assignCm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_changeCm
|
|
|
+ public function ACTION_changeCm(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_changeCm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_removeCm
|
|
|
+ public function ACTION_removeCm(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_removeCm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_assignRme
|
|
|
+ public function ACTION_assignRme(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_assignRme', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_changeRme
|
|
|
+ public function ACTION_changeRme(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_changeRme', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_removeRme
|
|
|
+ public function ACTION_removeRme(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_removeRme', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_assignRmm
|
|
|
+ public function ACTION_assignRmm(Request $request, $uid) {
|
|
|
+ $record = DB::table('client')->where('uid', $uid)->first();
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_assignRmm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ }
|
|
|
+
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_changeRmm
|
|
|
+ public function ACTION_changeRmm(Request $request, $uid) {
|
|
|
$record = DB::table('client')->where('uid', $uid)->first();
|
|
|
- return response()->view('pro/my_clients_SINGLE/ACTION_putAlly', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_changeRmm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
}
|
|
|
|
|
|
- // GET /my_clients/view/{uid}/ACTION_removeAlly
|
|
|
- public function ACTION_removeAlly(Request $request, $uid) {
|
|
|
+ // GET /my_clients/view/{uid}/ACTION_removeRmm
|
|
|
+ public function ACTION_removeRmm(Request $request, $uid) {
|
|
|
$record = DB::table('client')->where('uid', $uid)->first();
|
|
|
- return response()->view('pro/my_clients_SINGLE/ACTION_removeAlly', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
+ return response()->view('pro/my_clients_SINGLE/ACTION_removeRmm', compact('record'), session('message') ? 500 : 200)->header('Content-Type', 'text/html');
|
|
|
}
|
|
|
|
|
|
// GET /my_clients/view/{uid}/ACTION_putProfilePicture
|