Files
FloatAppGate/app/Controllers/Home.php
T
dev-chiefworks 251a27d75c Added call merge
2022-04-02 21:17:26 -04:00

31 lines
954 B
PHP

<?php
namespace App\Controllers;
class Home extends BaseController
{
public function index()
{
$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);
}
}