Added database support

This commit is contained in:
CHIEFSOFT\ameye
2024-04-28 06:20:38 -04:00
parent 7a654be81c
commit d7fb7b6050
4 changed files with 36 additions and 2 deletions
+7 -1
View File
@@ -18,7 +18,13 @@ class Users extends BaseController
public function userDash(){
return $this->respond([], 200);
$data = [
'firstname' => 'Olarewaju',
'lastname' => 'Jackson',
'loan_status' => '0',
];
return $this->respond($data, 200);
}
}