crm-system/
│
├── config/
│   └── db.php
│
├── controllers/
│   ├── customerController.php
│   ├── targetController.php
│   └── noteController.php
│
├── models/
│   ├── Customer.php
│   ├── Target.php
│   └── Note.php
│
├── views/
│   ├── customers/
│   │   ├── list.php
│   │   ├── add.php
│   │   ├── edit.php
│   │   └── delete.php
│   │
│   ├── targets/
│   │   ├── list.php
│   │   ├── add.php
│   │   ├── edit.php
│   │   └── delete.php
│   │
│   └── notes/
│       ├── list.php
│       ├── add.php
│       ├── edit.php
│       └── delete.php
│
├── assets/
│   ├── css/
│   │   └── tailwind.css
│   ├── js/
│   │   ├── customer.js
│   │   ├── target.js
│   │   └── note.js
│   └── img/
│
├── index.php
└── create_tables.php
