Added call merge
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user