/advanced-payroll/
├── assets/
│   ├── css/
│   ├── js/
│   └── images/
├── config/
│   ├── database.php
│   └── constants.php
├── controllers/
│   ├── AuthController.php
│   ├── EmployeeController.php
│   ├── PayslipController.php
│   ├── SettingsController.php
│   ├── SocialController.php
│   ├── TaxController.php
│   └── UserController.php
├── models/
│   ├── Employee.php
│   ├── Payslip.php
│   ├── SocialSetting.php
│   ├── Tax.php
│   ├── User.php
│   └── Database.php
├── views/
│   ├── auth/
│   │   └── login.php
│   ├── employees/
│   │   ├── create.php
│   │   ├── edit.php
│   │   └── index.php
│   ├── payslips/
│   │   ├── generate.php
│   │   ├── show.php
│   │   └── index.php
│   ├── settings/
│   │   ├── app.php
│   │   ├── social.php
│   │   └── tax.php
│   ├── users/
│   │   ├── create.php
│   │   ├── edit.php
│   │   └── index.php
│   ├── dashboard.php
│   ├── header.php
│   ├── footer.php
│   └── sidebar.php
├── utils/
│   ├── Auth.php
│   ├── PdfGenerator.php
│   └── helpers.php
├── .htaccess
└── index.php