gitextract_vi6i07vy/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── app/ │ ├── CustomHelper.php │ ├── Exports/ │ │ └── ProductExport.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── ArrayValidationController.php │ │ │ ├── Auth/ │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── ChatsController.php │ │ │ ├── CitiesController.php │ │ │ ├── Controller.php │ │ │ ├── CountriesController.php │ │ │ ├── CurrencyConverterController.php │ │ │ ├── CustomHelperController.php │ │ │ ├── DropZoneController.php │ │ │ ├── FileManagementController.php │ │ │ ├── FormBuilderController.php │ │ │ ├── FormsController.php │ │ │ ├── HomeController.php │ │ │ ├── KanbanController.php │ │ │ ├── LanguageController.php │ │ │ ├── NotesController.php │ │ │ ├── NotificationsController.php │ │ │ ├── ProductTransactionsController.php │ │ │ ├── ProductsController.php │ │ │ ├── PushNotificationController.php │ │ │ ├── PushNotificationMsgsController.php │ │ │ ├── RolesAndPermissionController.php │ │ │ ├── SSEController.php │ │ │ ├── ScheduleController.php │ │ │ ├── SecurityPracticeController.php │ │ │ ├── TodoController.php │ │ │ └── WeatherController.php │ │ ├── Middleware/ │ │ │ └── SetLocale.php │ │ └── Requests/ │ │ ├── FileManagementRequest.php │ │ ├── ProductRequest.php │ │ ├── TodoRequest.php │ │ └── UpdateProductRequest.php │ ├── Imports/ │ │ └── ProductsImport.php │ ├── Models/ │ │ ├── Chats.php │ │ ├── Cities.php │ │ ├── Countries.php │ │ ├── DropZone.php │ │ ├── FormBuilder.php │ │ ├── Forms.php │ │ ├── Kanban.php │ │ ├── Notes.php │ │ ├── Notifications.php │ │ ├── ProductTransactions.php │ │ ├── Products.php │ │ ├── PushNotification.php │ │ ├── PushNotificationMsgs.php │ │ ├── Schedule.php │ │ ├── Todo.php │ │ └── User.php │ └── Providers/ │ └── AppServiceProvider.php ├── artisan ├── bootstrap/ │ ├── app.php │ ├── cache/ │ │ └── .gitignore │ └── providers.php ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ └── session.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ ├── CountriesFactory.php │ │ ├── ProductTransactionsFactory.php │ │ ├── ProductsFactory.php │ │ ├── ScheduleFactory.php │ │ └── UserFactory.php │ ├── migrations/ │ │ ├── 0001_01_01_000000_create_users_table.php │ │ ├── 0001_01_01_000001_create_cache_table.php │ │ ├── 0001_01_01_000002_create_jobs_table.php │ │ ├── 2023_08_23_214821_create_schedules_table.php │ │ ├── 2023_08_28_213733_create_drop_zones_table.php │ │ ├── 2023_08_29_200542_create_products_table.php │ │ ├── 2023_10_15_193356_create_notes_table.php │ │ ├── 2023_10_29_223039_create_form_builders_table.php │ │ ├── 2023_10_29_223047_create_form_builder_transactions_table.php │ │ ├── 2023_12_06_222421_create_countries_table.php │ │ ├── 2024_01_21_204149_create_notifications_table.php │ │ ├── 2024_01_26_223609_create_chats_table.php │ │ ├── 2024_04_02_000644_create_personal_access_tokens_table.php │ │ ├── 2024_04_05_204622_create_push_notifications_table.php │ │ ├── 2024_04_06_205204_create_push_notification_msgs_table.php │ │ ├── 2024_04_11_221559_create_permission_tables.php │ │ ├── 2024_05_13_214747_create_product_transactions_table.php │ │ ├── 2024_07_09_223647_create_kanbans_table.php │ │ ├── 2024_07_23_200914_create_cities_table.php │ │ └── 2024_09_05_215621_create_todos_table.php │ └── seeders/ │ ├── CitiesSeeder.php │ ├── CountriesSeeder.php │ ├── DatabaseSeeder.php │ ├── ProductsSeeder.php │ └── ScheduleSeeder.php ├── lang/ │ ├── ar.json │ ├── en.json │ ├── fa.json │ ├── hi.json │ └── ur.json ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── assets/ │ │ ├── DataTables/ │ │ │ ├── AutoFill-2.6.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── autoFill.bootstrap.css │ │ │ │ │ ├── autoFill.bootstrap4.css │ │ │ │ │ ├── autoFill.bootstrap5.css │ │ │ │ │ ├── autoFill.bulma.css │ │ │ │ │ ├── autoFill.dataTables.css │ │ │ │ │ ├── autoFill.foundation.css │ │ │ │ │ ├── autoFill.jqueryui.css │ │ │ │ │ └── autoFill.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── autoFill.bootstrap.js │ │ │ │ ├── autoFill.bootstrap4.js │ │ │ │ ├── autoFill.bootstrap5.js │ │ │ │ ├── autoFill.bulma.js │ │ │ │ ├── autoFill.dataTables.js │ │ │ │ ├── autoFill.foundation.js │ │ │ │ ├── autoFill.jqueryui.js │ │ │ │ ├── autoFill.semanticui.js │ │ │ │ └── dataTables.autoFill.js │ │ │ ├── Buttons-2.4.2/ │ │ │ │ ├── css/ │ │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ │ ├── buttons.bootstrap5.css │ │ │ │ │ ├── buttons.bulma.css │ │ │ │ │ ├── buttons.dataTables.css │ │ │ │ │ ├── buttons.foundation.css │ │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ │ ├── buttons.semanticui.css │ │ │ │ │ ├── common.scss │ │ │ │ │ └── mixins.scss │ │ │ │ └── js/ │ │ │ │ ├── buttons.bootstrap.js │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ ├── buttons.bootstrap5.js │ │ │ │ ├── buttons.bulma.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.dataTables.js │ │ │ │ ├── buttons.foundation.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.jqueryui.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.semanticui.js │ │ │ │ └── dataTables.buttons.js │ │ │ ├── ColReorder-1.7.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── colReorder.bootstrap.css │ │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ │ ├── colReorder.bootstrap5.css │ │ │ │ │ ├── colReorder.bulma.css │ │ │ │ │ ├── colReorder.dataTables.css │ │ │ │ │ ├── colReorder.foundation.css │ │ │ │ │ ├── colReorder.jqueryui.css │ │ │ │ │ └── colReorder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── colReorder.bootstrap.js │ │ │ │ ├── colReorder.bootstrap4.js │ │ │ │ ├── colReorder.bootstrap5.js │ │ │ │ ├── colReorder.bulma.js │ │ │ │ ├── colReorder.dataTables.js │ │ │ │ ├── colReorder.foundation.js │ │ │ │ ├── colReorder.jqueryui.js │ │ │ │ ├── colReorder.semanticui.js │ │ │ │ └── dataTables.colReorder.js │ │ │ ├── DataTables-1.13.8/ │ │ │ │ ├── css/ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ │ ├── dataTables.bootstrap5.css │ │ │ │ │ ├── dataTables.bulma.css │ │ │ │ │ ├── dataTables.dataTables.css │ │ │ │ │ ├── dataTables.foundation.css │ │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ │ ├── dataTables.semanticui.css │ │ │ │ │ └── jquery.dataTables.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap5.js │ │ │ │ ├── dataTables.bulma.js │ │ │ │ ├── dataTables.dataTables.js │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.semanticui.js │ │ │ │ └── jquery.dataTables.js │ │ │ ├── DateTime-1.5.1/ │ │ │ │ ├── css/ │ │ │ │ │ └── dataTables.dateTime.css │ │ │ │ └── js/ │ │ │ │ └── dataTables.dateTime.js │ │ │ ├── FixedColumns-4.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── fixedColumns.bootstrap.css │ │ │ │ │ ├── fixedColumns.bootstrap4.css │ │ │ │ │ ├── fixedColumns.bootstrap5.css │ │ │ │ │ ├── fixedColumns.bulma.css │ │ │ │ │ ├── fixedColumns.dataTables.css │ │ │ │ │ ├── fixedColumns.foundation.css │ │ │ │ │ ├── fixedColumns.jqueryui.css │ │ │ │ │ └── fixedColumns.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ ├── fixedColumns.bootstrap.js │ │ │ │ ├── fixedColumns.bootstrap4.js │ │ │ │ ├── fixedColumns.bootstrap5.js │ │ │ │ ├── fixedColumns.bulma.js │ │ │ │ ├── fixedColumns.dataTables.js │ │ │ │ ├── fixedColumns.foundation.js │ │ │ │ ├── fixedColumns.jqueryui.js │ │ │ │ └── fixedColumns.semanticui.js │ │ │ ├── FixedHeader-3.4.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── fixedHeader.bootstrap.css │ │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ │ ├── fixedHeader.bootstrap5.css │ │ │ │ │ ├── fixedHeader.bulma.css │ │ │ │ │ ├── fixedHeader.dataTables.css │ │ │ │ │ ├── fixedHeader.foundation.css │ │ │ │ │ ├── fixedHeader.jqueryui.css │ │ │ │ │ └── fixedHeader.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ ├── fixedHeader.bootstrap.js │ │ │ │ ├── fixedHeader.bootstrap4.js │ │ │ │ ├── fixedHeader.bootstrap5.js │ │ │ │ ├── fixedHeader.bulma.js │ │ │ │ ├── fixedHeader.dataTables.js │ │ │ │ ├── fixedHeader.foundation.js │ │ │ │ ├── fixedHeader.jqueryui.js │ │ │ │ └── fixedHeader.semanticui.js │ │ │ ├── JSZip-3.10.1/ │ │ │ │ └── jszip.js │ │ │ ├── KeyTable-2.11.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── keyTable.bootstrap.css │ │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ │ ├── keyTable.bootstrap5.css │ │ │ │ │ ├── keyTable.bulma.css │ │ │ │ │ ├── keyTable.dataTables.css │ │ │ │ │ ├── keyTable.foundation.css │ │ │ │ │ ├── keyTable.jqueryui.css │ │ │ │ │ └── keyTable.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ ├── keyTable.bootstrap.js │ │ │ │ ├── keyTable.bootstrap4.js │ │ │ │ ├── keyTable.bootstrap5.js │ │ │ │ ├── keyTable.bulma.js │ │ │ │ ├── keyTable.dataTables.js │ │ │ │ ├── keyTable.foundation.js │ │ │ │ ├── keyTable.jqueryui.js │ │ │ │ └── keyTable.semanticui.js │ │ │ ├── Responsive-2.5.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── responsive.bootstrap.css │ │ │ │ │ ├── responsive.bootstrap4.css │ │ │ │ │ ├── responsive.bootstrap5.css │ │ │ │ │ ├── responsive.bulma.css │ │ │ │ │ ├── responsive.dataTables.css │ │ │ │ │ ├── responsive.foundation.css │ │ │ │ │ ├── responsive.jqueryui.css │ │ │ │ │ └── responsive.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── responsive.bootstrap.js │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ ├── responsive.bootstrap5.js │ │ │ │ ├── responsive.bulma.js │ │ │ │ ├── responsive.dataTables.js │ │ │ │ ├── responsive.foundation.js │ │ │ │ ├── responsive.jqueryui.js │ │ │ │ └── responsive.semanticui.js │ │ │ ├── RowGroup-1.4.1/ │ │ │ │ ├── css/ │ │ │ │ │ ├── rowGroup.bootstrap.css │ │ │ │ │ ├── rowGroup.bootstrap4.css │ │ │ │ │ ├── rowGroup.bootstrap5.css │ │ │ │ │ ├── rowGroup.bulma.css │ │ │ │ │ ├── rowGroup.dataTables.css │ │ │ │ │ ├── rowGroup.foundation.css │ │ │ │ │ ├── rowGroup.jqueryui.css │ │ │ │ │ └── rowGroup.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.rowGroup.js │ │ │ │ ├── rowGroup.bootstrap.js │ │ │ │ ├── rowGroup.bootstrap4.js │ │ │ │ ├── rowGroup.bootstrap5.js │ │ │ │ ├── rowGroup.bulma.js │ │ │ │ ├── rowGroup.dataTables.js │ │ │ │ ├── rowGroup.foundation.js │ │ │ │ ├── rowGroup.jqueryui.js │ │ │ │ └── rowGroup.semanticui.js │ │ │ ├── RowReorder-1.4.1/ │ │ │ │ ├── css/ │ │ │ │ │ ├── rowReorder.bootstrap.css │ │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ │ ├── rowReorder.bootstrap5.css │ │ │ │ │ ├── rowReorder.bulma.css │ │ │ │ │ ├── rowReorder.dataTables.css │ │ │ │ │ ├── rowReorder.foundation.css │ │ │ │ │ ├── rowReorder.jqueryui.css │ │ │ │ │ └── rowReorder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ ├── rowReorder.bootstrap.js │ │ │ │ ├── rowReorder.bootstrap4.js │ │ │ │ ├── rowReorder.bootstrap5.js │ │ │ │ ├── rowReorder.bulma.js │ │ │ │ ├── rowReorder.dataTables.js │ │ │ │ ├── rowReorder.foundation.js │ │ │ │ ├── rowReorder.jqueryui.js │ │ │ │ └── rowReorder.semanticui.js │ │ │ ├── Scroller-2.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── scroller.bootstrap.css │ │ │ │ │ ├── scroller.bootstrap4.css │ │ │ │ │ ├── scroller.bootstrap5.css │ │ │ │ │ ├── scroller.bulma.css │ │ │ │ │ ├── scroller.dataTables.css │ │ │ │ │ ├── scroller.foundation.css │ │ │ │ │ ├── scroller.jqueryui.css │ │ │ │ │ └── scroller.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ ├── scroller.bootstrap.js │ │ │ │ ├── scroller.bootstrap4.js │ │ │ │ ├── scroller.bootstrap5.js │ │ │ │ ├── scroller.bulma.js │ │ │ │ ├── scroller.dataTables.js │ │ │ │ ├── scroller.foundation.js │ │ │ │ ├── scroller.jqueryui.js │ │ │ │ └── scroller.semanticui.js │ │ │ ├── SearchBuilder-1.6.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── searchBuilder.bootstrap.css │ │ │ │ │ ├── searchBuilder.bootstrap4.css │ │ │ │ │ ├── searchBuilder.bootstrap5.css │ │ │ │ │ ├── searchBuilder.bulma.css │ │ │ │ │ ├── searchBuilder.dataTables.css │ │ │ │ │ ├── searchBuilder.foundation.css │ │ │ │ │ ├── searchBuilder.jqueryui.css │ │ │ │ │ └── searchBuilder.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.searchBuilder.js │ │ │ │ ├── searchBuilder.bootstrap.js │ │ │ │ ├── searchBuilder.bootstrap4.js │ │ │ │ ├── searchBuilder.bootstrap5.js │ │ │ │ ├── searchBuilder.bulma.js │ │ │ │ ├── searchBuilder.dataTables.js │ │ │ │ ├── searchBuilder.foundation.js │ │ │ │ ├── searchBuilder.jqueryui.js │ │ │ │ └── searchBuilder.semanticui.js │ │ │ ├── SearchPanes-2.2.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── searchPanes.bootstrap.css │ │ │ │ │ ├── searchPanes.bootstrap4.css │ │ │ │ │ ├── searchPanes.bootstrap5.css │ │ │ │ │ ├── searchPanes.bulma.css │ │ │ │ │ ├── searchPanes.dataTables.css │ │ │ │ │ ├── searchPanes.foundation.css │ │ │ │ │ ├── searchPanes.jqueryui.css │ │ │ │ │ └── searchPanes.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.searchPanes.js │ │ │ │ ├── searchPanes.bootstrap.js │ │ │ │ ├── searchPanes.bootstrap4.js │ │ │ │ ├── searchPanes.bootstrap5.js │ │ │ │ ├── searchPanes.bulma.js │ │ │ │ ├── searchPanes.dataTables.js │ │ │ │ ├── searchPanes.foundation.js │ │ │ │ ├── searchPanes.jqueryui.js │ │ │ │ └── searchPanes.semanticui.js │ │ │ ├── Select-1.7.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── select.bootstrap.css │ │ │ │ │ ├── select.bootstrap4.css │ │ │ │ │ ├── select.bootstrap5.css │ │ │ │ │ ├── select.bulma.css │ │ │ │ │ ├── select.dataTables.css │ │ │ │ │ ├── select.foundation.css │ │ │ │ │ ├── select.jqueryui.css │ │ │ │ │ └── select.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.select.js │ │ │ │ ├── select.bootstrap.js │ │ │ │ ├── select.bootstrap4.js │ │ │ │ ├── select.bootstrap5.js │ │ │ │ ├── select.bulma.js │ │ │ │ ├── select.dataTables.js │ │ │ │ ├── select.foundation.js │ │ │ │ ├── select.jqueryui.js │ │ │ │ └── select.semanticui.js │ │ │ ├── StateRestore-1.3.0/ │ │ │ │ ├── css/ │ │ │ │ │ ├── stateRestore.bootstrap.css │ │ │ │ │ ├── stateRestore.bootstrap4.css │ │ │ │ │ ├── stateRestore.bootstrap5.css │ │ │ │ │ ├── stateRestore.bulma.css │ │ │ │ │ ├── stateRestore.dataTables.css │ │ │ │ │ ├── stateRestore.foundation.css │ │ │ │ │ ├── stateRestore.jqueryui.css │ │ │ │ │ └── stateRestore.semanticui.css │ │ │ │ └── js/ │ │ │ │ ├── dataTables.stateRestore.js │ │ │ │ ├── stateRestore.bootstrap.js │ │ │ │ ├── stateRestore.bootstrap4.js │ │ │ │ ├── stateRestore.bootstrap5.js │ │ │ │ ├── stateRestore.bulma.js │ │ │ │ ├── stateRestore.dataTables.js │ │ │ │ ├── stateRestore.foundation.js │ │ │ │ ├── stateRestore.jqueryui.js │ │ │ │ └── stateRestore.semanticui.js │ │ │ ├── datatables.css │ │ │ ├── datatables.js │ │ │ └── pdfmake-0.2.7/ │ │ │ ├── pdfmake.js │ │ │ └── vfs_fonts.js │ │ ├── apexcharts/ │ │ │ ├── apexcharts.amd.js │ │ │ ├── apexcharts.amd.js.LICENSE.txt │ │ │ ├── apexcharts.common.js │ │ │ ├── apexcharts.css │ │ │ ├── apexcharts.esm.js │ │ │ ├── apexcharts.js │ │ │ └── locales/ │ │ │ ├── ar.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── et.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── hy.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ka.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt-br.json │ │ │ ├── pt.json │ │ │ ├── rs.json │ │ │ ├── ru.json │ │ │ ├── se.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sq.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── ua.json │ │ │ ├── zh-cn.json │ │ │ └── zh-tw.json │ │ ├── bootstrap-5.3.2-dist/ │ │ │ ├── css/ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.rtl.css │ │ │ └── js/ │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.esm.js │ │ │ └── bootstrap.js │ │ ├── css/ │ │ │ └── demo.css │ │ ├── js/ │ │ │ ├── config.js │ │ │ ├── dashboards-analytics.js │ │ │ ├── extended-ui-perfect-scrollbar.js │ │ │ ├── form-basic-inputs.js │ │ │ ├── main.js │ │ │ ├── pages-account-settings-account.js │ │ │ ├── ui-modals.js │ │ │ ├── ui-popover.js │ │ │ └── ui-toasts.js │ │ ├── notify.js │ │ └── vendor/ │ │ ├── css/ │ │ │ ├── core.css │ │ │ ├── pages/ │ │ │ │ ├── page-account-settings.css │ │ │ │ ├── page-auth.css │ │ │ │ ├── page-icons.css │ │ │ │ └── page-misc.css │ │ │ └── theme-default.css │ │ ├── fonts/ │ │ │ └── boxicons.css │ │ ├── js/ │ │ │ ├── bootstrap.js │ │ │ ├── helpers.js │ │ │ └── menu.js │ │ └── libs/ │ │ ├── apex-charts/ │ │ │ ├── apex-charts.css │ │ │ └── apexcharts.js │ │ ├── highlight/ │ │ │ ├── highlight-github.css │ │ │ ├── highlight.css │ │ │ └── highlight.js │ │ ├── jquery/ │ │ │ └── jquery.js │ │ ├── masonry/ │ │ │ └── masonry.js │ │ ├── perfect-scrollbar/ │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ └── popper/ │ │ └── popper.js │ ├── index.php │ ├── robots.txt │ └── service-worker.js ├── resources/ │ ├── css/ │ │ └── app.css │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ ├── sass/ │ │ ├── _variables.scss │ │ └── app.scss │ └── views/ │ ├── AutoCompleteSearch/ │ │ └── index.blade.php │ ├── AutoSuggest/ │ │ └── index.blade.php │ ├── CRUD/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── Chat/ │ │ └── Index.blade.php │ ├── CurrencyConverter/ │ │ └── index.blade.php │ ├── Datatable/ │ │ └── index.blade.php │ ├── DropZone/ │ │ └── index.blade.php │ ├── Dusk/ │ │ └── index.blade.php │ ├── EncryptAndDecrypt/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── FileManagement/ │ │ └── Index.blade.php │ ├── FormBuilder/ │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── read.blade.php │ ├── ImportExport/ │ │ ├── csv.blade.php │ │ └── index.blade.php │ ├── KanbanBoard/ │ │ └── Index.blade.php │ ├── LazyLoad/ │ │ └── index.blade.php │ ├── PDF/ │ │ └── Products.blade.php │ ├── PushNotification/ │ │ └── Index.blade.php │ ├── RolesAndPermissions/ │ │ ├── CreateRoles.blade.php │ │ ├── EditRole.blade.php │ │ └── Index.blade.php │ ├── Weather/ │ │ └── index.blade.php │ ├── WebRTC/ │ │ └── Index.blade.php │ ├── admin.blade.php │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ ├── verify-custom.blade.php │ │ └── verify.blade.php │ ├── cropperjs/ │ │ └── index.blade.php │ ├── home.blade.php │ ├── layouts/ │ │ ├── app.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ ├── schedule/ │ │ ├── add.blade.php │ │ └── index.blade.php │ ├── select2/ │ │ └── Index.blade.php │ ├── sse.blade.php │ ├── todos/ │ │ └── index.blade.php │ ├── verify-custom.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tests/ │ ├── Browser/ │ │ ├── CheckCRUDTest.php │ │ ├── CheckFormTest.php │ │ └── CheckSideBarLinksTest.php │ ├── CreatesApplication.php │ ├── DuskTestCase.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── vite.config.js