gitextract_82am4k6c/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Procfile ├── README.md ├── SECURITY.md ├── app/ │ ├── Console/ │ │ └── Kernel.php │ ├── Core/ │ │ ├── CrudDialogHelper.php │ │ ├── HasLogsActivity.php │ │ └── LogsActivity.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ └── LogoutController.php │ │ │ ├── Controller.php │ │ │ └── TicketNumberController.php │ │ ├── Kernel.php │ │ ├── Livewire/ │ │ │ ├── Administration/ │ │ │ │ ├── ActivityLogs.php │ │ │ │ ├── Companies.php │ │ │ │ ├── CompaniesDialog.php │ │ │ │ ├── Roles.php │ │ │ │ ├── RolesDialog.php │ │ │ │ ├── TicketPriorities.php │ │ │ │ ├── TicketPrioritiesDialog.php │ │ │ │ ├── TicketStatuses.php │ │ │ │ ├── TicketStatusesDialog.php │ │ │ │ ├── TicketTypes.php │ │ │ │ ├── TicketTypesDialog.php │ │ │ │ ├── Users.php │ │ │ │ └── UsersDialog.php │ │ │ ├── Analytics.php │ │ │ ├── Auth/ │ │ │ │ ├── ActivateAccount.php │ │ │ │ ├── ForgotPassword.php │ │ │ │ ├── Login.php │ │ │ │ └── RecoverPassword.php │ │ │ ├── Chat.php │ │ │ ├── Kanban.php │ │ │ ├── MyNotifications.php │ │ │ ├── MyProfile.php │ │ │ ├── Projects.php │ │ │ ├── ProjectsDialog.php │ │ │ ├── TicketDetails/ │ │ │ │ ├── Content.php │ │ │ │ ├── Priority.php │ │ │ │ ├── Responsible.php │ │ │ │ ├── Status.php │ │ │ │ ├── Title.php │ │ │ │ └── Type.php │ │ │ ├── TicketDetails.php │ │ │ ├── TicketDetailsComments.php │ │ │ ├── TicketDetailsCommentsContent.php │ │ │ ├── Tickets.php │ │ │ └── TicketsDialog.php │ │ └── Middleware/ │ │ ├── Authenticate.php │ │ ├── CanAccessTicket.php │ │ ├── EncryptCookies.php │ │ ├── LocaleMiddleware.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ ├── Jobs/ │ │ ├── CommentCreatedJob.php │ │ ├── TicketCreatedJob.php │ │ └── TicketUpdatedJob.php │ ├── Models/ │ │ ├── Chat.php │ │ ├── Comment.php │ │ ├── Company.php │ │ ├── CompanyUser.php │ │ ├── FavoriteProject.php │ │ ├── Icon.php │ │ ├── Project.php │ │ ├── Ticket.php │ │ ├── TicketPriority.php │ │ ├── TicketStatus.php │ │ ├── TicketType.php │ │ └── User.php │ ├── Notifications/ │ │ ├── CommentCreateNotification.php │ │ ├── TicketCreatedNotification.php │ │ ├── TicketUpdatedNotification.php │ │ ├── UserActivatedNotification.php │ │ └── UserCreatedNotification.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Tables/ │ │ └── Columns/ │ │ └── UserColumn.php │ ├── View/ │ │ └── Components/ │ │ ├── BaseLayout.php │ │ ├── GuestLayout.php │ │ ├── Layout.php │ │ ├── MainMenu.php │ │ ├── NotificationType.php │ │ ├── PrioritySpan.php │ │ ├── RoleSpan.php │ │ ├── StatusSpan.php │ │ ├── TypeSpan.php │ │ └── UserAvatar.php │ └── helpers.php ├── artisan ├── bootstrap/ │ ├── app.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── activitylog.php │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filament-avatar.php │ ├── filament-kanban-board.php │ ├── filament.php │ ├── filesystems.php │ ├── hashing.php │ ├── larabug.php │ ├── laravel-translatable-string-exporter.php │ ├── logging.php │ ├── mail.php │ ├── permission.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ ├── system.php │ ├── tables.php │ └── view.php ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── UserFactory.php │ ├── help_desk.pgsql.sql │ ├── help_desk.sql │ ├── migrations/ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2022_09_08_094911_create_icons_table.php │ │ ├── 2022_09_09_220749_create_tickets_table.php │ │ ├── 2022_09_10_205032_create_projects_table.php │ │ ├── 2022_09_10_205612_create_user_projects_table.php │ │ ├── 2022_09_10_205915_add_project_to_tickets.php │ │ ├── 2022_09_10_220736_add_role_to_users.php │ │ ├── 2022_09_11_142205_add_register_token_to_users.php │ │ ├── 2022_09_11_153059_add_soft_deletes_to_users.php │ │ ├── 2022_09_11_163751_create_favorite_projects_table.php │ │ ├── 2022_09_11_202013_add_type_to_tickets.php │ │ ├── 2022_09_12_090928_create_comments_table.php │ │ ├── 2022_09_12_095043_create_jobs_table.php │ │ ├── 2022_09_14_175349_create_notifications_table.php │ │ ├── 2022_09_15_142643_add_local_to_user.php │ │ ├── 2022_09_19_095513_create_ticket_statuses_table.php │ │ ├── 2022_09_19_111627_create_ticket_priorities_table.php │ │ ├── 2022_09_19_111633_create_ticket_types_table.php │ │ ├── 2022_09_19_122813_add_slug_to_ticket_statuses.php │ │ ├── 2022_09_19_122821_add_slug_to_ticket_types.php │ │ ├── 2022_09_19_122828_add_slug_to_ticket_priorities.php │ │ ├── 2022_09_19_143232_add_ticket_prefix_to_projects.php │ │ ├── 2022_09_19_144042_add_number_to_tickets.php │ │ ├── 2022_09_19_181148_create_activity_log_table.php │ │ ├── 2022_09_19_181149_add_event_column_to_activity_log_table.php │ │ ├── 2022_09_19_181150_add_batch_uuid_column_to_activity_log_table.php │ │ ├── 2022_09_19_181611_drop_user_projects.php │ │ ├── 2022_09_19_212320_create_chats_table.php │ │ ├── 2022_09_24_230950_create_companies_table.php │ │ ├── 2022_09_25_154331_create_permission_tables.php │ │ ├── 2022_09_25_163436_remove_role_from_users.php │ │ ├── 2022_09_25_165452_create_company_users_table.php │ │ └── 2022_09_30_133603_add_company_id_to_projects.php │ └── seeders/ │ ├── DatabaseSeeder.php │ ├── FontAwesomeFreeSeeder.php │ └── PermissionsSeeder.php ├── docker-compose.yml ├── docs/ │ ├── .nojekyll │ ├── README.md │ ├── _sidebar.md │ ├── changelog.md │ ├── configuration.md │ ├── getting-started.md │ ├── index.html │ ├── permissions.md │ └── screenshots.md ├── lang/ │ ├── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── fr/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── fr.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public/ │ ├── .htaccess │ ├── index.php │ ├── robots.txt │ └── vendor/ │ └── filament-forms-tinyeditor/ │ └── tinymce/ │ ├── langs/ │ │ ├── README.md │ │ ├── ar.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cs_CZ.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── es_419.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr_FR.js │ │ ├── he_IL.js │ │ ├── hr.js │ │ ├── hu_HU.js │ │ ├── id.js │ │ ├── it_IT.js │ │ ├── ja.js │ │ ├── kab.js │ │ ├── nb_NO.js │ │ ├── nl.js │ │ ├── nl_BE.js │ │ ├── pl.js │ │ ├── pt_BR.js │ │ ├── pt_PT.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── ru_RU.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sv_SE.js │ │ ├── ta.js │ │ ├── ta_IN.js │ │ ├── th_TH.js │ │ ├── tr.js │ │ ├── tr_TR.js │ │ ├── ug.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── plugins/ │ │ └── emoticons/ │ │ └── js/ │ │ ├── emojiimages.js │ │ └── emojis.js │ ├── skins/ │ │ └── ui/ │ │ ├── dark/ │ │ │ ├── content.css │ │ │ ├── content.inline.css │ │ │ ├── content.mobile.css │ │ │ ├── skin.css │ │ │ └── skin.mobile.css │ │ └── light/ │ │ ├── content.css │ │ ├── content.inline.css │ │ ├── content.mobile.css │ │ ├── skin.css │ │ └── skin.mobile.css │ └── tinymce.d.ts ├── resources/ │ ├── css/ │ │ ├── app.scss │ │ └── media-queries.scss │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ └── views/ │ ├── administration/ │ │ ├── activity-logs.blade.php │ │ ├── companies.blade.php │ │ ├── roles.blade.php │ │ ├── ticket-priorities.blade.php │ │ ├── ticket-statuses.blade.php │ │ ├── ticket-types.blade.php │ │ └── users.blade.php │ ├── analytics.blade.php │ ├── auth/ │ │ ├── activate-account.blade.php │ │ ├── forgot-password.blade.php │ │ ├── login.blade.php │ │ └── recover-password.blade.php │ ├── components/ │ │ ├── base-layout.blade.php │ │ ├── guest-layout.blade.php │ │ ├── layout.blade.php │ │ ├── main-menu.blade.php │ │ ├── notification-type.blade.php │ │ ├── priority-span.blade.php │ │ ├── role-span.blade.php │ │ ├── status-span.blade.php │ │ ├── type-span.blade.php │ │ └── user-avatar.blade.php │ ├── kanban.blade.php │ ├── livewire/ │ │ ├── administration/ │ │ │ ├── activity-logs.blade.php │ │ │ ├── companies-dialog.blade.php │ │ │ ├── companies.blade.php │ │ │ ├── roles-dialog.blade.php │ │ │ ├── roles.blade.php │ │ │ ├── ticket-priorities-dialog.blade.php │ │ │ ├── ticket-priorities.blade.php │ │ │ ├── ticket-statuses-dialog.blade.php │ │ │ ├── ticket-statuses.blade.php │ │ │ ├── ticket-types-dialog.blade.php │ │ │ ├── ticket-types.blade.php │ │ │ ├── users-dialog.blade.php │ │ │ └── users.blade.php │ │ ├── analytics.blade.php │ │ ├── auth/ │ │ │ ├── activate-account.blade.php │ │ │ ├── forgot-password.blade.php │ │ │ ├── login.blade.php │ │ │ └── recover-password.blade.php │ │ ├── chat.blade.php │ │ ├── my-notifications.blade.php │ │ ├── my-profile.blade.php │ │ ├── projects-dialog.blade.php │ │ ├── projects.blade.php │ │ ├── ticket-details/ │ │ │ ├── content.blade.php │ │ │ ├── priority.blade.php │ │ │ ├── responsible.blade.php │ │ │ ├── status.blade.php │ │ │ ├── title.blade.php │ │ │ └── type.blade.php │ │ ├── ticket-details-comments-content.blade.php │ │ ├── ticket-details-comments.blade.php │ │ ├── ticket-details.blade.php │ │ ├── tickets-dialog.blade.php │ │ └── tickets.blade.php │ ├── my-profile.blade.php │ ├── notifications.blade.php │ ├── tables/ │ │ └── columns/ │ │ └── user-column.blade.php │ ├── ticket-details.blade.php │ ├── tickets.blade.php │ ├── vendor/ │ │ ├── filament-kanban-board/ │ │ │ ├── .gitkeep │ │ │ └── kanban-header.blade.php │ │ └── pagination/ │ │ └── tailwind.blade.php │ └── welcome.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tailwind.config.js ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── vite.config.js