c:\xampp\htdocs\lawapp\
├── assets/
│   ├── css/
│   ├──   ├── calendar.css
|   ├──   └── style.css
│   ├── js/
|   ├──   └── app.js
│   └── images/
├── api/
│   ├── add_event.php
│   ├── delete_event.php
│   ├── get_event.php
│   └── update_event.php
├── config/
│   └── database.php
├── includes/
│   ├── auth.php
│   ├── case_details.php
│   ├── database.php
│   ├── delete_document.php
│   ├── edit_case.php
│   ├── export_data.php
│   ├── footer.php
│   ├── functions.php
│   ├── get_billing.php
│   ├── get_case.php
│   ├── get_client.php
│   ├── get_lawyer.php
│   ├── get_task.php
│   ├── get_user.php
│   ├── header.php
│   ├── navbar.php
│   └── sidebar.php
├── uploads/
│   ├── documents/
│   └── temp/
├── admin/
│   ├── assign_tasks.php
│   ├── debug_tasks.php
│   ├── delete_task.php
│   ├── edit_task.php
│   ├── settings.php
│   ├── upload_logo.php
│   └── users.php
├── lawyer/
│   └── lawyers.php
├── paralegal/
│   ├── documents.php
│   ├── index.php
│   ├── profile.php
│   └── tasks.php
├── staff/
│   ├── documents.php
│   ├── index.php
│   ├── profile.php
│   ├── task_details.php
│   └── tasks.php
├── index.php
├── billing.php
├── calendar.php
├── cases.php
├── clients.php
├── dashboard.php
├── documents.php
├── download_document.php
├── generate_invoice.php
├── login.php
├── logout.php
├── unauthorized.php
├── upload_document.php
└── view_document.php
