Commit ee3732b3 by Jansa Jose

add vehicle details api

parent f2a584e1
...@@ -218,6 +218,12 @@ class Webservice_model extends CI_Model { ...@@ -218,6 +218,12 @@ class Webservice_model extends CI_Model {
$last_id = $this->db->insert_id(); $last_id = $this->db->insert_id();
} }
} }
if(isset($postData['save_car']) && !empty($postData['save_car'])){
$respArr['status'] = 'success';
$respArr['message'] = 'success';
return $respArr;
}
$book_data = array( $book_data = array(
'mileage' => $postData['mileage'], 'mileage' => $postData['mileage'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment