api-app/
│
├── config/
│   └── config.php
│
├── api/
│   ├── index.php
│   ├── news.php
│   ├── news_detail.php
│   ├── register.php
│   ├── save_banner_click.php
│   ├── save_fcm_token.php
│   ├── send_push_notification.php
│   ├── send_registration_otp.php
│   ├── update_fcm_token.php
│   ├── update_password.php
│   ├── update_profile.php
│   ├── upload_foto_profil.php
│   ├── verify_otp.php
│   └── verify_registration_otp.php
│
├── model/
│   ├── User.php
│   ├── OTP.php
│   └── News.php
│
└── controller/
    ├── UserController.php
    ├── OTPController.php
    └── NewsController.php