📂 Laravel Project Structure Viewer 📁 Scanning: /home/gdickson/projects/waitwise-draco/src ========================================= ├── 📁 app/ │ ├── 📁 AI/ │ │ ├── 📁 Context/ │ │ ├── 📁 Contracts/ │ │ ├── 📁 DTOs/ │ │ ├── 📁 Exceptions/ │ │ └── 📁 Providers/ │ ├── 📁 Alerts/ │ ├── 📁 Automation/ │ │ ├── 📁 Actions/ │ │ │ ├── 📁 Contracts/ │ ├── 📁 Broadcasting/ │ ├── 📁 Console/ │ │ └── 📁 Commands/ │ ├── 📁 Core/ │ │ ├── 📁 Adapters/ │ │ ├── 📁 Bootstraps/ │ ├── 📁 Data/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Queue/ │ ├── 📁 Enums/ │ ├── 📁 Events/ │ │ ├── 📁 Alerts/ │ │ ├── 📁 Appointments/ │ │ └── 📁 Queue/ │ ├── 📁 Exceptions/ │ ├── 📁 Http/ │ │ ├── 📁 Controllers/ │ │ │ ├── 📁 AI/ │ │ │ ├── 📁 Alerts/ │ │ │ ├── 📁 Appointments/ │ │ │ ├── 📁 Auth/ │ │ │ ├── 📁 Automation/ │ │ │ ├── 📁 Billing/ │ │ │ ├── 📁 Communications/ │ │ │ ├── 📁 Dashboard/ │ │ │ ├── 📁 KPI/ │ │ │ │ ├── 📁 Concerns/ │ │ │ ├── 📁 People/ │ │ │ ├── 📁 Platform/ │ │ │ ├── 📁 Portal/ │ │ │ ├── 📁 Queue/ │ │ │ ├── 📁 Reporting/ │ │ │ ├── 📁 UserManagement/ │ │ │ └── 📁 Webhooks/ │ │ ├── 📁 Middleware/ │ │ ├── 📁 Requests/ │ │ │ ├── 📁 Account/ │ │ │ ├── 📁 Appointments/ │ │ │ ├── 📁 Auth/ │ │ │ ├── 📁 Communications/ │ │ │ ├── 📁 Queue/ │ │ └── 📁 Resources/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Communications/ │ │ └── 📁 Queue/ │ ├── 📁 Jobs/ │ ├── 📁 KPI/ │ ├── 📁 Listeners/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Automation/ │ │ └── 📁 Notifications/ │ │ ├── 📁 Appointments/ │ │ └── 📁 Queue/ │ ├── 📁 Models/ │ ├── 📁 Payments/ │ │ └── 📁 Gateways/ │ │ ├── 📁 Contracts/ │ │ ├── 📁 DTO/ │ │ ├── 📁 Dimepay/ │ │ ├── 📁 Fake/ │ ├── 📁 Policies/ │ │ ├── 📁 Communications/ │ ├── 📁 Providers/ │ ├── 📁 Queries/ │ │ ├── 📁 Appointments/ │ │ └── 📁 Queue/ │ ├── 📁 Reporting/ │ │ ├── 📁 Contracts/ │ │ ├── 📁 Exports/ │ │ │ ├── 📁 Contracts/ │ │ └── 📁 Reports/ │ │ ├── 📁 Dashboards/ │ ├── 📁 Rules/ │ ├── 📁 Services/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Authorization/ │ │ ├── 📁 Billing/ │ │ ├── 📁 Dashboards/ │ │ ├── 📁 Lifecycle/ │ │ ├── 📁 Notifications/ │ │ │ ├── 📁 Channels/ │ │ │ ├── 📁 Providers/ │ │ │ │ └── 📁 WhatsApp/ │ │ │ │ ├── 📁 DTOs/ │ │ │ ├── 📁 Sms/ │ │ │ │ ├── 📁 Contracts/ │ │ │ │ ├── 📁 Providers/ │ │ │ └── 📁 WhatsApp/ │ │ ├── 📁 Payments/ │ │ ├── 📁 Queue/ │ │ ├── 📁 Reports/ │ ├── 📁 Support/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Billing/ │ │ └── 📁 Queue/ │ ├── 📁 View/ │ │ └── 📁 Components/ ├── 📁 bootstrap/ │ ├── 📁 cache/ ├── 📁 config/ │ ├── 📁 global/ │ └── 📁 waitwise/ ├── 📁 database/ │ ├── 📁 factories/ │ ├── 📁 migrations/ │ └── 📁 seeders/ ├── 📁 public/ │ ├── 📁 vendor/ │ │ ├── 📁 datatables/ │ │ ├── 📁 qr-scanner/ │ │ │ └── 📁 types/ │ │ └── 📁 qrscanner/ │ └── 📁 waitwise/ │ ├── 📁 css/ │ ├── 📁 js/ │ │ ├── 📁 custom/ │ │ │ ├── 📁 account/ │ │ │ │ └── 📁 settings/ │ │ │ ├── 📁 admin/ │ │ │ │ ├── 📁 counter/ │ │ │ │ ├── 📁 department/ │ │ │ │ ├── 📁 home/ │ │ │ │ └── 📁 token/ │ │ │ ├── 📁 alerts/ │ │ │ ├── 📁 appointments/ │ │ │ ├── 📁 apps/ │ │ │ │ ├── 📁 calendar/ │ │ │ ├── 📁 authentication/ │ │ │ │ ├── 📁 csrf/ │ │ │ │ ├── 📁 password-reset/ │ │ │ │ ├── 📁 sign-in/ │ │ │ │ ├── 📁 sign-out/ │ │ │ │ └── 📁 sign-up/ │ │ │ ├── 📁 counter/ │ │ │ ├── 📁 dashboard/ │ │ │ ├── 📁 department/ │ │ │ ├── 📁 documentation/ │ │ │ │ ├── 📁 base/ │ │ │ │ ├── 📁 charts/ │ │ │ │ │ ├── 📁 amcharts/ │ │ │ │ │ ├── 📁 flotcharts/ │ │ │ │ │ └── 📁 google-charts/ │ │ │ │ ├── 📁 editors/ │ │ │ │ │ ├── 📁 ckeditor/ │ │ │ │ │ ├── 📁 quill/ │ │ │ │ │ └── 📁 tinymce/ │ │ │ │ ├── 📁 forms/ │ │ │ │ │ ├── 📁 formrepeater/ │ │ │ │ │ ├── 📁 formvalidation/ │ │ │ │ ├── 📁 general/ │ │ │ │ │ ├── 📁 datatables/ │ │ │ │ │ ├── 📁 draggable/ │ │ │ │ │ ├── 📁 fullcalendar/ │ │ │ │ │ ├── 📁 jkanban/ │ │ │ │ │ ├── 📁 jstree/ │ │ │ │ │ ├── 📁 search/ │ │ │ │ │ └── 📁 vis-timeline/ │ │ │ ├── 📁 home/ │ │ │ ├── 📁 kpis/ │ │ │ ├── 📁 listeners/ │ │ │ ├── 📁 modals/ │ │ │ ├── 📁 onboarding/ │ │ │ ├── 📁 token/ │ │ │ ├── 📁 user-management/ │ │ │ │ ├── 📁 permissions/ │ │ │ │ ├── 📁 roles/ │ │ │ │ │ ├── 📁 list/ │ │ │ │ │ └── 📁 view/ │ │ │ │ └── 📁 users/ │ │ │ │ ├── 📁 list/ │ │ │ │ └── 📁 view/ │ │ └── 📁 vendors/ │ │ └── 📁 plugins/ │ ├── 📁 media/ │ │ ├── 📁 avatars/ │ │ ├── 📁 books/ │ │ ├── 📁 demos/ │ │ ├── 📁 flags/ │ │ ├── 📁 icons/ │ │ │ └── 📁 duotune/ │ │ │ ├── 📁 abstract/ │ │ │ ├── 📁 arrows/ │ │ │ ├── 📁 art/ │ │ │ ├── 📁 coding/ │ │ │ ├── 📁 communication/ │ │ │ ├── 📁 ecommerce/ │ │ │ ├── 📁 electronics/ │ │ │ ├── 📁 files/ │ │ │ ├── 📁 finance/ │ │ │ ├── 📁 general/ │ │ │ ├── 📁 graphs/ │ │ │ ├── 📁 layouts/ │ │ │ ├── 📁 maps/ │ │ │ ├── 📁 medicine/ │ │ │ ├── 📁 social/ │ │ │ ├── 📁 technology/ │ │ │ └── 📁 text/ │ │ ├── 📁 illustrations/ │ │ │ ├── 📁 dozzy-1/ │ │ │ ├── 📁 sigma-1/ │ │ │ ├── 📁 sketchy-1/ │ │ │ └── 📁 unitedpalms-1/ │ │ ├── 📁 logos/ │ │ ├── 📁 media/ │ │ │ ├── 📁 avatars/ │ │ │ ├── 📁 flags/ │ │ │ ├── 📁 icons/ │ │ │ │ └── 📁 duotune/ │ │ │ │ ├── 📁 abstract/ │ │ │ │ ├── 📁 arrows/ │ │ │ │ ├── 📁 art/ │ │ │ │ ├── 📁 coding/ │ │ │ │ ├── 📁 communication/ │ │ │ │ ├── 📁 ecommerce/ │ │ │ │ ├── 📁 electronics/ │ │ │ │ ├── 📁 files/ │ │ │ │ ├── 📁 finance/ │ │ │ │ ├── 📁 general/ │ │ │ │ ├── 📁 graphs/ │ │ │ │ ├── 📁 layouts/ │ │ │ │ ├── 📁 maps/ │ │ │ │ ├── 📁 medicine/ │ │ │ │ ├── 📁 social/ │ │ │ │ ├── 📁 technology/ │ │ │ │ └── 📁 text/ │ │ │ ├── 📁 illustrations/ │ │ │ │ ├── 📁 dozzy-1/ │ │ │ │ ├── 📁 sigma-1/ │ │ │ │ ├── 📁 sketchy-1/ │ │ │ │ └── 📁 unitedpalms-1/ │ │ │ ├── 📁 misc/ │ │ │ ├── 📁 patterns/ │ │ │ ├── 📁 plugins/ │ │ │ │ └── 📁 jstree/ │ │ │ ├── 📁 products/ │ │ │ ├── 📁 smiles/ │ │ │ ├── 📁 stock/ │ │ │ │ ├── 📁 2000x800/ │ │ │ │ ├── 📁 300x270/ │ │ │ │ ├── 📁 600x400/ │ │ │ │ ├── 📁 600x600/ │ │ │ │ └── 📁 900x600/ │ │ │ ├── 📁 svg/ │ │ │ │ ├── 📁 avatars/ │ │ │ │ ├── 📁 brand-logos/ │ │ │ │ ├── 📁 card-logos/ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ ├── 📁 files/ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ ├── 📁 illustrations/ │ │ │ │ │ └── 📁 sigma/ │ │ │ │ ├── 📁 misc/ │ │ │ │ ├── 📁 payment-methods/ │ │ │ │ └── 📁 social-logos/ │ │ │ └── 📁 technology-logos/ │ │ ├── 📁 misc/ │ │ │ ├── 📁 docs/ │ │ │ │ └── 📁 no-jquery/ │ │ ├── 📁 patterns/ │ │ ├── 📁 plugins/ │ │ │ └── 📁 jstree/ │ │ ├── 📁 product-demos/ │ │ ├── 📁 products/ │ │ ├── 📁 screens/ │ │ ├── 📁 smiles/ │ │ ├── 📁 sounds/ │ │ │ ├── 📁 ar/ │ │ │ │ ├── 📁 char/ │ │ │ ├── 📁 bn/ │ │ │ │ ├── 📁 char/ │ │ │ ├── 📁 en/ │ │ │ │ ├── 📁 char/ │ │ │ └── 📁 vi/ │ │ │ ├── 📁 char/ │ │ ├── 📁 stock/ │ │ │ ├── 📁 1600x800/ │ │ │ ├── 📁 2000x800/ │ │ │ ├── 📁 300x270/ │ │ │ ├── 📁 600x400/ │ │ │ ├── 📁 600x600/ │ │ │ ├── 📁 900x600/ │ │ │ └── 📁 ecommerce/ │ │ ├── 📁 svg/ │ │ │ ├── 📁 avatars/ │ │ │ ├── 📁 brand-logos/ │ │ │ ├── 📁 card-logos/ │ │ │ │ ├── 📁 dark/ │ │ │ ├── 📁 files/ │ │ │ │ ├── 📁 dark/ │ │ │ ├── 📁 general/ │ │ │ ├── 📁 humans/ │ │ │ ├── 📁 illustrations/ │ │ │ │ ├── 📁 easy/ │ │ │ │ └── 📁 sigma/ │ │ │ ├── 📁 misc/ │ │ │ ├── 📁 payment-methods/ │ │ │ ├── 📁 products-categories/ │ │ │ ├── 📁 shapes/ │ │ │ └── 📁 social-logos/ │ │ └── 📁 technology-logos/ │ ├── 📁 plugins/ │ │ ├── 📁 custom/ │ │ │ ├── 📁 ckeditor/ │ │ │ ├── 📁 cookiealert/ │ │ │ ├── 📁 cropper/ │ │ │ ├── 📁 datatables/ │ │ │ ├── 📁 draggable/ │ │ │ ├── 📁 flatpickr/ │ │ │ ├── 📁 flotcharts/ │ │ │ ├── 📁 formrepeater/ │ │ │ ├── 📁 fslightbox/ │ │ │ ├── 📁 fullcalendar/ │ │ │ ├── 📁 jkanban/ │ │ │ ├── 📁 jstree/ │ │ │ ├── 📁 leaflet/ │ │ │ ├── 📁 prismjs/ │ │ │ ├── 📁 tiny-slider/ │ │ │ ├── 📁 tinymce/ │ │ │ │ ├── 📁 skins/ │ │ │ │ │ ├── 📁 content/ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ │ ├── 📁 default/ │ │ │ │ │ │ ├── 📁 document/ │ │ │ │ │ │ └── 📁 writer/ │ │ │ │ │ └── 📁 ui/ │ │ │ │ │ ├── 📁 oxide/ │ │ │ │ │ │ ├── 📁 fonts/ │ │ │ │ │ └── 📁 oxide-dark/ │ │ │ │ │ ├── 📁 fonts/ │ │ │ └── 📁 typedjs/ │ │ └── 📁 global/ │ │ ├── 📁 fonts/ │ │ │ ├── 📁 @fortawesome/ │ │ │ ├── 📁 bootstrap-icons/ │ │ │ └── 📁 line-awesome/ │ ├── 📁 resources/ │ │ └── 📁 assets/ │ │ ├── 📁 core/ │ │ │ ├── 📁 js/ │ │ │ │ └── 📁 custom/ │ │ │ │ └── 📁 documentation/ │ │ │ │ ├── 📁 base/ │ │ │ │ ├── 📁 charts/ │ │ │ │ │ ├── 📁 amcharts/ │ │ │ │ │ ├── 📁 flotcharts/ │ │ │ │ │ └── 📁 google-charts/ │ │ │ │ ├── 📁 editors/ │ │ │ │ │ ├── 📁 ckeditor/ │ │ │ │ │ ├── 📁 quill/ │ │ │ │ │ └── 📁 tinymce/ │ │ │ │ ├── 📁 forms/ │ │ │ │ │ ├── 📁 formrepeater/ │ │ │ │ │ ├── 📁 formvalidation/ │ │ │ │ ├── 📁 general/ │ │ │ │ │ ├── 📁 datatables/ │ │ │ │ │ ├── 📁 draggable/ │ │ │ │ │ ├── 📁 fullcalendar/ │ │ │ │ │ ├── 📁 jkanban/ │ │ │ │ │ ├── 📁 jstree/ │ │ │ │ │ ├── 📁 search/ │ │ │ │ │ └── 📁 vis-timeline/ │ │ │ └── 📁 plugins/ │ │ │ └── 📁 custom/ │ │ │ ├── 📁 ckeditor/ │ │ │ ├── 📁 cookiealert/ │ │ │ ├── 📁 cropper/ │ │ │ ├── 📁 datatables/ │ │ │ ├── 📁 draggable/ │ │ │ ├── 📁 flatpickr/ │ │ │ ├── 📁 flotcharts/ │ │ │ ├── 📁 formrepeater/ │ │ │ ├── 📁 fslightbox/ │ │ │ ├── 📁 fullcalendar/ │ │ │ ├── 📁 jkanban/ │ │ │ ├── 📁 jstree/ │ │ │ ├── 📁 leaflet/ │ │ │ ├── 📁 prismjs/ │ │ │ ├── 📁 tiny-slider/ │ │ │ └── 📁 tinymce/ │ │ └── 📁 extended/ │ │ └── 📁 js/ │ │ ├── 📁 custom/ │ │ │ ├── 📁 account/ │ │ │ │ └── 📁 settings/ │ │ │ ├── 📁 apps/ │ │ │ ├── 📁 authentication/ │ │ │ │ ├── 📁 csrf/ │ │ │ │ ├── 📁 password-reset/ │ │ │ │ ├── 📁 sign-in/ │ │ │ │ ├── 📁 sign-out/ │ │ │ │ └── 📁 sign-up/ │ │ │ ├── 📁 counter/ │ │ │ ├── 📁 department/ │ │ │ ├── 📁 home/ │ │ │ ├── 📁 modals/ │ │ │ ├── 📁 onboarding/ │ │ │ ├── 📁 token/ │ │ │ ├── 📁 user-management/ │ │ │ │ ├── 📁 permissions/ │ │ │ │ ├── 📁 roles/ │ │ │ │ │ ├── 📁 list/ │ │ │ │ │ └── 📁 view/ │ │ │ │ └── 📁 users/ │ │ │ │ ├── 📁 list/ │ │ │ │ └── 📁 view/ │ │ └── 📁 vendors/ │ │ └── 📁 plugins/ │ └── 📁 vendor/ │ └── 📁 datatables/ ├── 📁 resources/ │ ├── 📁 assets/ │ │ ├── 📁 core/ │ │ │ ├── 📁 js/ │ │ │ │ ├── 📁 components/ │ │ │ │ ├── 📁 custom/ │ │ │ │ │ └── 📁 documentation/ │ │ │ │ │ ├── 📁 base/ │ │ │ │ │ ├── 📁 charts/ │ │ │ │ │ │ ├── 📁 amcharts/ │ │ │ │ │ │ ├── 📁 flotcharts/ │ │ │ │ │ │ └── 📁 google-charts/ │ │ │ │ │ ├── 📁 editors/ │ │ │ │ │ │ ├── 📁 ckeditor/ │ │ │ │ │ │ ├── 📁 quill/ │ │ │ │ │ │ └── 📁 tinymce/ │ │ │ │ │ ├── 📁 forms/ │ │ │ │ │ │ ├── 📁 formrepeater/ │ │ │ │ │ │ ├── 📁 formvalidation/ │ │ │ │ │ ├── 📁 general/ │ │ │ │ │ │ ├── 📁 datatables/ │ │ │ │ │ │ ├── 📁 draggable/ │ │ │ │ │ │ ├── 📁 fullcalendar/ │ │ │ │ │ │ ├── 📁 jkanban/ │ │ │ │ │ │ ├── 📁 jstree/ │ │ │ │ │ │ ├── 📁 search/ │ │ │ │ │ │ └── 📁 vis-timeline/ │ │ │ │ ├── 📁 layout/ │ │ │ │ └── 📁 vendors/ │ │ │ │ └── 📁 plugins/ │ │ │ ├── 📁 media/ │ │ │ │ ├── 📁 avatars/ │ │ │ │ ├── 📁 demos/ │ │ │ │ ├── 📁 flags/ │ │ │ │ ├── 📁 icons/ │ │ │ │ │ └── 📁 duotune/ │ │ │ │ │ ├── 📁 abstract/ │ │ │ │ │ ├── 📁 arrows/ │ │ │ │ │ ├── 📁 art/ │ │ │ │ │ ├── 📁 coding/ │ │ │ │ │ ├── 📁 communication/ │ │ │ │ │ ├── 📁 ecommerce/ │ │ │ │ │ ├── 📁 electronics/ │ │ │ │ │ ├── 📁 files/ │ │ │ │ │ ├── 📁 finance/ │ │ │ │ │ ├── 📁 general/ │ │ │ │ │ ├── 📁 graphs/ │ │ │ │ │ ├── 📁 layouts/ │ │ │ │ │ ├── 📁 maps/ │ │ │ │ │ ├── 📁 medicine/ │ │ │ │ │ ├── 📁 social/ │ │ │ │ │ ├── 📁 technology/ │ │ │ │ │ └── 📁 text/ │ │ │ │ ├── 📁 illustrations/ │ │ │ │ │ ├── 📁 dozzy-1/ │ │ │ │ │ ├── 📁 sigma-1/ │ │ │ │ │ ├── 📁 sketchy-1/ │ │ │ │ │ └── 📁 unitedpalms-1/ │ │ │ │ ├── 📁 media/ │ │ │ │ │ ├── 📁 avatars/ │ │ │ │ │ ├── 📁 flags/ │ │ │ │ │ ├── 📁 icons/ │ │ │ │ │ │ └── 📁 duotune/ │ │ │ │ │ │ ├── 📁 abstract/ │ │ │ │ │ │ ├── 📁 arrows/ │ │ │ │ │ │ ├── 📁 art/ │ │ │ │ │ │ ├── 📁 coding/ │ │ │ │ │ │ ├── 📁 communication/ │ │ │ │ │ │ ├── 📁 ecommerce/ │ │ │ │ │ │ ├── 📁 electronics/ │ │ │ │ │ │ ├── 📁 files/ │ │ │ │ │ │ ├── 📁 finance/ │ │ │ │ │ │ ├── 📁 general/ │ │ │ │ │ │ ├── 📁 graphs/ │ │ │ │ │ │ ├── 📁 layouts/ │ │ │ │ │ │ ├── 📁 maps/ │ │ │ │ │ │ ├── 📁 medicine/ │ │ │ │ │ │ ├── 📁 social/ │ │ │ │ │ │ ├── 📁 technology/ │ │ │ │ │ │ └── 📁 text/ │ │ │ │ │ ├── 📁 illustrations/ │ │ │ │ │ │ ├── 📁 dozzy-1/ │ │ │ │ │ │ ├── 📁 sigma-1/ │ │ │ │ │ │ ├── 📁 sketchy-1/ │ │ │ │ │ │ └── 📁 unitedpalms-1/ │ │ │ │ │ ├── 📁 misc/ │ │ │ │ │ ├── 📁 patterns/ │ │ │ │ │ ├── 📁 plugins/ │ │ │ │ │ │ └── 📁 jstree/ │ │ │ │ │ ├── 📁 products/ │ │ │ │ │ ├── 📁 smiles/ │ │ │ │ │ ├── 📁 stock/ │ │ │ │ │ │ ├── 📁 2000x800/ │ │ │ │ │ │ ├── 📁 300x270/ │ │ │ │ │ │ ├── 📁 600x400/ │ │ │ │ │ │ ├── 📁 600x600/ │ │ │ │ │ │ └── 📁 900x600/ │ │ │ │ │ ├── 📁 svg/ │ │ │ │ │ │ ├── 📁 avatars/ │ │ │ │ │ │ ├── 📁 brand-logos/ │ │ │ │ │ │ ├── 📁 card-logos/ │ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ │ ├── 📁 files/ │ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ │ ├── 📁 illustrations/ │ │ │ │ │ │ │ └── 📁 sigma/ │ │ │ │ │ │ ├── 📁 misc/ │ │ │ │ │ │ ├── 📁 payment-methods/ │ │ │ │ │ │ └── 📁 social-logos/ │ │ │ │ │ └── 📁 technology-logos/ │ │ │ │ ├── 📁 misc/ │ │ │ │ │ ├── 📁 docs/ │ │ │ │ │ │ └── 📁 no-jquery/ │ │ │ │ ├── 📁 patterns/ │ │ │ │ ├── 📁 plugins/ │ │ │ │ │ └── 📁 jstree/ │ │ │ │ ├── 📁 products/ │ │ │ │ ├── 📁 screens/ │ │ │ │ ├── 📁 smiles/ │ │ │ │ ├── 📁 stock/ │ │ │ │ │ ├── 📁 1600x800/ │ │ │ │ │ ├── 📁 2000x800/ │ │ │ │ │ ├── 📁 300x270/ │ │ │ │ │ ├── 📁 600x400/ │ │ │ │ │ ├── 📁 600x600/ │ │ │ │ │ ├── 📁 900x600/ │ │ │ │ │ └── 📁 ecommerce/ │ │ │ │ ├── 📁 svg/ │ │ │ │ │ ├── 📁 avatars/ │ │ │ │ │ ├── 📁 brand-logos/ │ │ │ │ │ ├── 📁 card-logos/ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ ├── 📁 files/ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ ├── 📁 general/ │ │ │ │ │ ├── 📁 humans/ │ │ │ │ │ ├── 📁 illustrations/ │ │ │ │ │ │ ├── 📁 easy/ │ │ │ │ │ │ └── 📁 sigma/ │ │ │ │ │ ├── 📁 misc/ │ │ │ │ │ ├── 📁 payment-methods/ │ │ │ │ │ ├── 📁 products-categories/ │ │ │ │ │ ├── 📁 shapes/ │ │ │ │ │ └── 📁 social-logos/ │ │ │ │ └── 📁 technology-logos/ │ │ │ ├── 📁 plugins/ │ │ │ │ ├── 📁 bootstrap-multiselectsplitter/ │ │ │ │ ├── 📁 bootstrap-session-timeout/ │ │ │ │ │ ├── 📁 examples/ │ │ │ │ ├── 📁 custom/ │ │ │ │ │ ├── 📁 ckeditor/ │ │ │ │ │ ├── 📁 cookiealert/ │ │ │ │ │ ├── 📁 cropper/ │ │ │ │ │ ├── 📁 datatables/ │ │ │ │ │ ├── 📁 draggable/ │ │ │ │ │ ├── 📁 flatpickr/ │ │ │ │ │ ├── 📁 flotcharts/ │ │ │ │ │ ├── 📁 formrepeater/ │ │ │ │ │ ├── 📁 fslightbox/ │ │ │ │ │ ├── 📁 fullcalendar/ │ │ │ │ │ ├── 📁 jkanban/ │ │ │ │ │ ├── 📁 jstree/ │ │ │ │ │ ├── 📁 leaflet/ │ │ │ │ │ ├── 📁 prismjs/ │ │ │ │ │ ├── 📁 tiny-slider/ │ │ │ │ │ └── 📁 tinymce/ │ │ │ │ │ ├── 📁 skins/ │ │ │ │ │ │ ├── 📁 content/ │ │ │ │ │ │ │ ├── 📁 dark/ │ │ │ │ │ │ │ ├── 📁 default/ │ │ │ │ │ │ │ ├── 📁 document/ │ │ │ │ │ │ │ └── 📁 writer/ │ │ │ │ │ │ └── 📁 ui/ │ │ │ │ │ │ ├── 📁 oxide/ │ │ │ │ │ │ │ ├── 📁 fonts/ │ │ │ │ │ │ └── 📁 oxide-dark/ │ │ │ │ │ │ ├── 📁 fonts/ │ │ │ │ ├── 📁 fonticons/ │ │ │ │ ├── 📁 formvalidation/ │ │ │ │ │ └── 📁 src/ │ │ │ │ │ ├── 📁 css/ │ │ │ │ │ │ └── 📁 plugins/ │ │ │ │ │ └── 📁 js/ │ │ │ │ │ ├── 📁 algorithms/ │ │ │ │ │ ├── 📁 core/ │ │ │ │ │ ├── 📁 filters/ │ │ │ │ │ ├── 📁 locales/ │ │ │ │ │ ├── 📁 plugins/ │ │ │ │ │ ├── 📁 utils/ │ │ │ │ │ └── 📁 validators/ │ │ │ │ │ ├── 📁 id/ │ │ │ │ │ ├── 📁 vat/ │ │ │ │ ├── 📁 fslightbox/ │ │ │ │ ├── 📁 jquery-idletimer/ │ │ │ │ └── 📁 toastr/ │ │ │ └── 📁 sass/ │ │ │ ├── 📁 base/ │ │ │ │ ├── 📁 functions/ │ │ │ │ └── 📁 mixins/ │ │ │ ├── 📁 components/ │ │ │ │ ├── 📁 buttons/ │ │ │ │ ├── 📁 forms/ │ │ │ │ ├── 📁 helpers/ │ │ │ │ ├── 📁 menu/ │ │ │ │ ├── 📁 mixins/ │ │ │ │ └── 📁 stepper/ │ │ │ ├── 📁 layout/ │ │ │ │ └── 📁 docs/ │ │ │ └── 📁 vendors/ │ │ │ └── 📁 plugins/ │ │ │ └── 📁 mixins/ │ │ ├── 📁 extended/ │ │ │ └── 📁 js/ │ │ │ ├── 📁 custom/ │ │ │ │ ├── 📁 account/ │ │ │ │ │ └── 📁 settings/ │ │ │ │ ├── 📁 appointments/ │ │ │ │ ├── 📁 apps/ │ │ │ │ ├── 📁 authentication/ │ │ │ │ │ ├── 📁 csrf/ │ │ │ │ │ ├── 📁 password-reset/ │ │ │ │ │ ├── 📁 sign-in/ │ │ │ │ │ ├── 📁 sign-out/ │ │ │ │ │ └── 📁 sign-up/ │ │ │ │ ├── 📁 counter/ │ │ │ │ ├── 📁 dashboard/ │ │ │ │ ├── 📁 department/ │ │ │ │ ├── 📁 home/ │ │ │ │ ├── 📁 listeners/ │ │ │ │ ├── 📁 modals/ │ │ │ │ ├── 📁 onboarding/ │ │ │ │ ├── 📁 token/ │ │ │ │ ├── 📁 user-management/ │ │ │ │ │ ├── 📁 permissions/ │ │ │ │ │ ├── 📁 roles/ │ │ │ │ │ │ ├── 📁 list/ │ │ │ │ │ │ └── 📁 view/ │ │ │ │ │ └── 📁 users/ │ │ │ │ │ ├── 📁 list/ │ │ │ │ │ └── 📁 view/ │ │ │ └── 📁 vendors/ │ │ │ └── 📁 plugins/ │ │ └── 📁 waitwise/ │ │ ├── 📁 js/ │ │ │ ├── 📁 layout/ │ │ ├── 📁 media/ │ │ │ ├── 📁 books/ │ │ │ ├── 📁 logos/ │ │ │ ├── 📁 misc/ │ │ │ ├── 📁 plugins/ │ │ │ │ └── 📁 jstree/ │ │ │ ├── 📁 product-demos/ │ │ │ ├── 📁 sounds/ │ │ │ │ ├── 📁 ar/ │ │ │ │ │ ├── 📁 char/ │ │ │ │ ├── 📁 bn/ │ │ │ │ │ ├── 📁 char/ │ │ │ │ ├── 📁 en/ │ │ │ │ │ ├── 📁 char/ │ │ │ │ └── 📁 vi/ │ │ │ │ ├── 📁 char/ │ │ │ └── 📁 svg/ │ │ │ ├── 📁 illustrations/ │ │ │ ├── 📁 misc/ │ │ │ └── 📁 shapes/ │ │ └── 📁 sass/ │ │ ├── 📁 components/ │ │ ├── 📁 layout/ │ │ │ └── 📁 aside/ │ ├── 📁 js/ │ │ ├── 📁 dashboards/ │ │ ├── 📁 globals/ │ │ ├── 📁 legacy/ │ │ ├── 📁 modules/ │ │ │ ├── 📁 ai/ │ │ │ ├── 📁 appointments/ │ │ │ ├── 📁 auth/ │ │ │ │ ├── 📁 client-registration/ │ │ │ │ ├── 📁 login/ │ │ │ │ ├── 📁 new-password/ │ │ │ │ └── 📁 password-reset/ │ │ │ ├── 📁 automation/ │ │ │ ├── 📁 counters/ │ │ │ ├── 📁 frontdesk/ │ │ │ │ └── 📁 dashboard/ │ │ │ ├── 📁 listeners/ │ │ │ ├── 📁 liveQueue/ │ │ │ ├── 📁 people/ │ │ │ ├── 📁 queue/ │ │ │ └── 📁 services/ │ │ ├── 📁 pages/ │ │ │ ├── 📁 auth/ │ │ │ │ ├── 📁 client-registration/ │ │ │ │ ├── 📁 login/ │ │ │ │ ├── 📁 new-password/ │ │ │ │ └── 📁 password-reset/ │ │ │ ├── 📁 communications/ │ │ │ │ ├── 📁 channelSettings/ │ │ │ │ ├── 📁 deliveryLog/ │ │ │ │ ├── 📁 messageTemplates/ │ │ │ │ ├── 📁 notificationSettings/ │ │ │ │ └── 📁 personPreferences/ │ │ │ ├── 📁 dashboard/ │ │ │ │ ├── 📁 company/ │ │ │ │ ├── 📁 frontdesk/ │ │ │ │ ├── 📁 operations/ │ │ │ │ └── 📁 service/ │ │ │ ├── 📁 queue/ │ │ │ │ └── 📁 live/ │ │ │ └── 📁 reporting/ │ │ │ ├── 📁 reportIndex/ │ │ │ └── 📁 reportSchedules/ │ │ ├── 📁 plugins/ │ │ │ ├── 📁 layout/ │ │ │ ├── 📁 setup/ │ │ ├── 📁 services/ │ │ ├── 📁 shared/ │ │ │ ├── 📁 forms/ │ │ │ └── 📁 session/ │ │ └── 📁 ui/ │ ├── 📁 prompts/ │ │ └── 📁 ai/ │ └── 📁 views/ │ ├── 📁 ai/ │ │ └── 📁 system_admin/ │ ├── 📁 base/ │ ├── 📁 components/ │ ├── 📁 emails/ │ │ ├── 📁 invitation/ │ ├── 📁 errors/ │ ├── 📁 layout/ │ │ ├── 📁 docs/ │ │ └── 📁 waitwise/ │ │ ├── 📁 aside/ │ │ ├── 📁 header/ │ │ ├── 📁 page-title/ │ │ ├── 📁 toolbars/ │ │ └── 📁 topbar/ │ ├── 📁 pages/ │ │ ├── 📁 account/ │ │ │ ├── 📁 overview/ │ │ │ └── 📁 settings/ │ │ ├── 📁 ai/ │ │ │ ├── 📁 assistant/ │ │ │ │ └── 📁 partials/ │ │ │ ├── 📁 capabilities/ │ │ │ ├── 📁 settings/ │ │ │ ├── 📁 skills/ │ │ │ └── 📁 usage/ │ │ ├── 📁 alerts/ │ │ │ ├── 📁 partials/ │ │ ├── 📁 appointments/ │ │ ├── 📁 apps/ │ │ │ └── 📁 user-management/ │ │ │ ├── 📁 permissions/ │ │ │ ├── 📁 roles/ │ │ │ └── 📁 users/ │ │ ├── 📁 auth/ │ │ │ ├── 📁 content/ │ │ ├── 📁 automation/ │ │ │ ├── 📁 partials/ │ │ ├── 📁 billing/ │ │ ├── 📁 common/ │ │ │ ├── 📁 display/ │ │ ├── 📁 communications/ │ │ │ ├── 📁 channels/ │ │ │ ├── 📁 delivery-log/ │ │ │ ├── 📁 message-templates/ │ │ │ ├── 📁 notification-settings/ │ │ │ └── 📁 person-preferences/ │ │ ├── 📁 dashboard/ │ │ │ ├── 📁 billing/ │ │ │ ├── 📁 company/ │ │ │ ├── 📁 frontdesk/ │ │ │ ├── 📁 operations/ │ │ │ ├── 📁 service/ │ │ │ └── 📁 system/ │ │ ├── 📁 kpis/ │ │ │ ├── 📁 partials/ │ │ ├── 📁 pages/ │ │ │ └── 📁 profile/ │ │ │ └── 📁 activity/ │ │ │ └── 📁 timeline/ │ │ │ └── 📁 items/ │ │ ├── 📁 plans/ │ │ ├── 📁 portal/ │ │ ├── 📁 reporting/ │ │ │ └── 📁 schedules/ │ │ ├── 📁 reports/ │ │ ├── 📁 scheduledreports/ │ │ └── 📁 tax-rates/ │ ├── 📁 partials/ │ │ ├── 📁 engage/ │ │ │ ├── 📁 demos/ │ │ │ ├── 📁 help/ │ │ │ └── 📁 purchase/ │ │ ├── 📁 general/ │ │ │ ├── 📁 appointment/ │ │ │ └── 📁 onboarding/ │ │ ├── 📁 menus/ │ │ ├── 📁 modals/ │ │ │ ├── 📁 alerts/ │ │ │ ├── 📁 appointments/ │ │ │ ├── 📁 billing/ │ │ │ ├── 📁 blacklist/ │ │ │ ├── 📁 bookinghours/ │ │ │ ├── 📁 businesscategory/ │ │ │ ├── 📁 company/ │ │ │ ├── 📁 counter/ │ │ │ ├── 📁 dashboard/ │ │ │ │ └── 📁 frontdesk/ │ │ │ ├── 📁 department/ │ │ │ ├── 📁 dependants/ │ │ │ ├── 📁 display/ │ │ │ ├── 📁 features/ │ │ │ ├── 📁 field/ │ │ │ ├── 📁 general/ │ │ │ ├── 📁 home/ │ │ │ ├── 📁 location/ │ │ │ ├── 📁 locationfield/ │ │ │ ├── 📁 mybookinghours/ │ │ │ ├── 📁 openhours/ │ │ │ ├── 📁 permissions/ │ │ │ ├── 📁 plans/ │ │ │ ├── 📁 queue/ │ │ │ ├── 📁 reasonforvisit/ │ │ │ ├── 📁 reasonforvisitcounter/ │ │ │ ├── 📁 restrictedhours/ │ │ │ ├── 📁 roles/ │ │ │ ├── 📁 scheduledreports/ │ │ │ ├── 📁 services/ │ │ │ ├── 📁 serviceusers/ │ │ │ ├── 📁 settings/ │ │ │ │ └── 📁 display/ │ │ │ ├── 📁 tax-rates/ │ │ │ ├── 📁 token/ │ │ │ ├── 📁 two-factor-authentication/ │ │ │ │ ├── 📁 partials/ │ │ │ │ └── 📁 partials_backup/ │ │ │ ├── 📁 users/ │ │ │ └── 📁 viplist/ │ │ ├── 📁 reports/ │ │ ├── 📁 scheduledreports/ │ │ ├── 📁 search/ │ │ │ └── 📁 partials/ │ │ ├── 📁 topbar/ │ │ └── 📁 widgets/ │ │ ├── 📁 calendar/ │ │ ├── 📁 charts/ │ │ ├── 📁 lists/ │ │ ├── 📁 mixed/ │ │ └── 📁 tables/ │ ├── 📁 public/ │ ├── 📁 reporting/ │ ├── 📁 templates/ │ │ └── 📁 invoices/ │ ├── 📁 vendor/ │ │ ├── 📁 datatables/ │ │ ├── 📁 mail/ │ │ │ ├── 📁 html/ │ │ │ │ └── 📁 themes/ │ │ │ └── 📁 text/ │ │ ├── 📁 notifications/ │ │ └── 📁 pagination/ ├── 📁 routes/ ├── 📁 storage/ │ ├── 📁 app/ │ │ ├── 📁 private/ │ │ ├── 📁 public/ │ ├── 📁 framework/ │ │ ├── 📁 cache/ │ │ │ ├── 📁 data/ │ │ ├── 📁 sessions/ │ │ ├── 📁 testing/ │ │ └── 📁 views/ │ └── 📁 logs/ ├── 📁 tests/ │ ├── 📁 Feature/ │ │ ├── 📁 Appointments/ │ │ ├── 📁 Billing/ │ │ ├── 📁 Broadcasts/ │ │ ├── 📁 Notifications/ │ │ ├── 📁 People/ │ │ ├── 📁 Queue/ │ │ └── 📁 Webhooks/ │ └── 📁 Unit/