Added call merge

This commit is contained in:
dev-chiefworks
2022-04-02 21:17:26 -04:00
parent bb1eebb80c
commit 251a27d75c
2 changed files with 40 additions and 5 deletions
+20 -1
View File
@@ -6,6 +6,25 @@ class Home extends BaseController
{
public function index()
{
return view('welcome_message');
$endpoints = array(
'getdrycleanservicelist' => array('POST'),
'createuser' => array('POST'),
'userlogin' => array('POST'),
'updateprofile' => array('POST'),
'updsprofile' => array('POST'),
'newlundrypickup' => array('POST'),
'newdrycleanpickup' => array('POST'),
'confirmlundrypickup' => array('POST'),
'savecardpayment' => array('POST'),
'getlundrylocation' => array('POST'),
'getcardpaymentlist' => array('POST'),
'getmyservicelist' => array('POST'),
'getoneserviceitem' => array('POST'),
'loadprofile' => array('POST'),
'deletecard' => array('POST')
);
$data['endpoints'] = $endpoints;
return view('welcome_message',$data);
}
}