├── .github └── FUNDING.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── art └── screenshot.png ├── composer.json ├── config └── tomato-admin.php ├── database └── migrations │ ├── 2014_10_12_000000_update_users_table.php │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2020_05_21_100000_create_teams_table.php │ ├── 2020_05_21_200000_create_team_user_table.php │ └── 2020_05_21_300000_create_team_invitations_table.php ├── publish ├── Models │ └── User.php ├── Modules │ └── .gitkeep ├── bootstrap │ └── app.php ├── config │ ├── fortify.php │ └── jetstream.php ├── emails │ └── team-invitation.blade.php ├── markdown │ ├── policy.md │ └── terms.md ├── modules_statuses.json ├── package.json ├── resources │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── _checkbox-radio-switch.css │ │ ├── _progress.css │ │ ├── _scrollbars.css │ │ ├── _table.css │ │ ├── app.css │ │ ├── module.esm.css │ │ ├── module.esm.js │ │ └── tailwind │ │ │ ├── _base.css │ │ │ ├── _components.css │ │ │ └── _utilities.css │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── choices.scss │ │ └── ssr.js │ └── views │ │ └── welcome.blade.php ├── tailwind.config.js └── vite.config.js ├── resources ├── css │ ├── _checkbox-radio-switch.css │ ├── _progress.css │ ├── _scrollbars.css │ ├── _table.css │ ├── main.css │ ├── module.esm.css │ ├── module.esm.js │ └── tailwind │ │ ├── _base.css │ │ ├── _components.css │ │ └── _utilities.css ├── js │ └── components │ │ ├── TomatoArtisan.vue │ │ ├── TomatoClipboard.vue │ │ ├── TomatoCode.vue │ │ ├── TomatoColor.vue │ │ ├── TomatoDraggable.vue │ │ ├── TomatoItems.vue │ │ ├── TomatoRepeater.vue │ │ ├── TomatoRich.vue │ │ ├── TomatoSearch.vue │ │ ├── TomatoSelect.vue │ │ ├── TomatoSlider.vue │ │ ├── TomatoTable.vue │ │ ├── TomatoTel.vue │ │ ├── TomatoTooltip.vue │ │ └── components │ │ ├── CommandCard.vue │ │ ├── CommandCard │ │ └── Badge.vue │ │ ├── CommandOutput.vue │ │ ├── CommandSidebar.vue │ │ ├── Group.vue │ │ ├── Sidebar │ │ ├── ArgumentInput.vue │ │ └── OptionInput.vue │ │ └── TopBar.vue ├── lang │ ├── ar.json │ ├── ar │ │ └── global.php │ ├── en.json │ └── en │ │ └── global.php ├── markdown │ ├── policy.md │ └── terms.md └── views │ ├── api │ ├── edit.blade.php │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── two-factor-challenge.blade.php │ └── verify-email.blade.php │ ├── components │ ├── action-buttons.blade.php │ ├── application-logo.blade.php │ ├── auth-session-status.blade.php │ ├── button.blade.php │ ├── clipboard.blade.php │ ├── code.blade.php │ ├── color.blade.php │ ├── container.blade.php │ ├── draggable.blade.php │ ├── dropdown-item.blade.php │ ├── dropdown.blade.php │ ├── icon.blade.php │ ├── items.blade.php │ ├── markdown-editor.blade.php │ ├── markdown-viewer.blade.php │ ├── menu-group.blade.php │ ├── menu-item.blade.php │ ├── pagination.blade.php │ ├── profile-dropdown.blade.php │ ├── relations-group.blade.php │ ├── relations.blade.php │ ├── repeater.blade.php │ ├── rich.blade.php │ ├── row.blade.php │ ├── search.blade.php │ ├── select.blade.php │ ├── slider-item.blade.php │ ├── slider.blade.php │ ├── submit-buttons.blade.php │ ├── submit.blade.php │ ├── table-action.blade.php │ ├── tel.blade.php │ ├── tooltip.blade.php │ └── widget.blade.php │ ├── emails │ └── team-invitation.blade.php │ ├── layouts │ ├── app.blade.php │ ├── guest.blade.php │ └── includes │ │ ├── aside.blade.php │ │ ├── footer.blade.php │ │ ├── menu.blade.php │ │ └── nav.blade.php │ ├── pages │ ├── dashboard.blade.php │ ├── policy.blade.php │ └── terms.blade.php │ ├── profile │ ├── edit.blade.php │ └── partials │ │ ├── delete-user-form.blade.php │ │ ├── logout-other-browser-sessions-form.blade.php │ │ ├── two-factor-authentication-form.blade.php │ │ ├── update-password-form.blade.php │ │ └── update-profile-information-form.blade.php │ └── teams │ ├── add-team-member.blade.php │ ├── create.blade.php │ ├── delete-team-form.blade.php │ ├── manage-team-members.blade.php │ ├── member-role-form.blade.php │ ├── show.blade.php │ ├── team-member-invitations.blade.php │ ├── team-member-role-form.blade.php │ └── update-team-name-form.blade.php ├── routes └── web.php ├── src ├── Actions │ ├── Fortify │ │ ├── CreateNewUser.php │ │ ├── CreateNewUserWithTeams.php │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ └── Jetstream │ │ ├── AddTeamMember.php │ │ ├── CreateTeam.php │ │ ├── DeleteTeam.php │ │ ├── DeleteUser.php │ │ ├── DeleteUserWithTeams.php │ │ ├── InviteTeamMember.php │ │ ├── RemoveTeamMember.php │ │ └── UpdateTeamName.php ├── Console │ ├── TomatoAdminInstall.php │ ├── TomatoAdminUpgrade.php │ └── TomatoAdminUser.php ├── Facade │ ├── Tomato.php │ ├── TomatoMenu.php │ ├── TomatoSlot.php │ └── TomatoWidget.php ├── Helpers │ └── ApiResponse.php ├── Http │ ├── Controllers │ │ ├── ApiTokenController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── Concerns │ │ │ └── ConfirmsTwoFactorAuthentication.php │ │ ├── CurrentTeamController.php │ │ ├── DashboardController.php │ │ ├── OtherBrowserSessionsController.php │ │ ├── PrivacyPolicyController.php │ │ ├── ProfilePhotoController.php │ │ ├── Responses │ │ │ ├── FailedPasswordConfirmationResponse.php │ │ │ ├── LoginResponse.php │ │ │ ├── LogoutResponse.php │ │ │ ├── PasswordConfirmedResponse.php │ │ │ ├── PasswordResetResponse.php │ │ │ ├── PasswordUpdateResponse.php │ │ │ ├── ProfileInformationUpdatedResponse.php │ │ │ ├── RecoveryCodesGeneratedResponse.php │ │ │ ├── RegisterResponse.php │ │ │ ├── SuccessfulPasswordResetLinkRequestResponse.php │ │ │ ├── TwoFactorConfirmedResponse.php │ │ │ ├── TwoFactorDisabledResponse.php │ │ │ ├── TwoFactorEnabledResponse.php │ │ │ ├── TwoFactorLoginResponse.php │ │ │ └── VerifyEmailResponse.php │ │ ├── TeamController.php │ │ ├── TeamInvitationController.php │ │ ├── TeamMemberController.php │ │ ├── TermsOfServiceController.php │ │ └── UserProfileController.php │ └── Middleware │ │ └── LanguageSwitcher.php ├── Interfaces │ ├── TomatoBase.php │ └── TomatoMenu.php ├── Models │ ├── Membership.php │ ├── Team.php │ └── TeamInvitation.php ├── Policies │ └── TeamPolicy.php ├── Providers │ ├── AuthServiceProvider.php │ ├── FortifyServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── JetstreamWithTeamsServiceProvider.php ├── Services │ ├── Contracts │ │ ├── Menu.php │ │ └── Widget.php │ ├── TeamSubscriptionOptions.php │ ├── TomatoMenu.php │ ├── TomatoMenuHandler.php │ ├── TomatoRequests.php │ ├── TomatoResponse.php │ ├── TomatoSlots.php │ ├── TomatoWidget.php │ └── TomatoWidgetHandler.php ├── TomatoAdminServiceProvider.php └── Views │ ├── ActionButtons.php │ ├── ApplicationLogo.php │ ├── Aside.php │ ├── AuthSessionStatus.php │ ├── Button.php │ ├── Code.php │ ├── Color.php │ ├── Container.php │ ├── Copy.php │ ├── Draggable.php │ ├── Dropdown.php │ ├── DropdownItem.php │ ├── Footer.php │ ├── GuestLayout.php │ ├── Icon.php │ ├── Items.php │ ├── Layout.php │ ├── MarkdownEditor.php │ ├── MarkdownViewer.php │ ├── MenuGroup.php │ ├── MenuItem.php │ ├── Navbar.php │ ├── ProfileDropdown.php │ ├── Relations.php │ ├── RelationsGroup.php │ ├── Repeater.php │ ├── Rich.php │ ├── Row.php │ ├── Search.php │ ├── Select.php │ ├── Slider.php │ ├── SliderItem.php │ ├── Submit.php │ ├── SubmitButtons.php │ ├── TableAction.php │ ├── Tel.php │ ├── Tooltip.php │ └── Widget.php └── tests └── .gitkeep /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [3x1io] 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /art/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/art/screenshot.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/composer.json -------------------------------------------------------------------------------- /config/tomato-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/config/tomato-admin.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_update_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2014_10_12_000000_update_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_100000_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2020_05_21_100000_create_teams_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_200000_create_team_user_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2020_05_21_200000_create_team_user_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_300000_create_team_invitations_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/database/migrations/2020_05_21_300000_create_team_invitations_table.php -------------------------------------------------------------------------------- /publish/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/Models/User.php -------------------------------------------------------------------------------- /publish/Modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /publish/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/bootstrap/app.php -------------------------------------------------------------------------------- /publish/config/fortify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/config/fortify.php -------------------------------------------------------------------------------- /publish/config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/config/jetstream.php -------------------------------------------------------------------------------- /publish/emails/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/emails/team-invitation.blade.php -------------------------------------------------------------------------------- /publish/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/markdown/policy.md -------------------------------------------------------------------------------- /publish/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/markdown/terms.md -------------------------------------------------------------------------------- /publish/modules_statuses.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /publish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/package.json -------------------------------------------------------------------------------- /publish/resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/.DS_Store -------------------------------------------------------------------------------- /publish/resources/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/.DS_Store -------------------------------------------------------------------------------- /publish/resources/css/_checkbox-radio-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/_checkbox-radio-switch.css -------------------------------------------------------------------------------- /publish/resources/css/_progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/_progress.css -------------------------------------------------------------------------------- /publish/resources/css/_scrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/_scrollbars.css -------------------------------------------------------------------------------- /publish/resources/css/_table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/_table.css -------------------------------------------------------------------------------- /publish/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/app.css -------------------------------------------------------------------------------- /publish/resources/css/module.esm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/module.esm.css -------------------------------------------------------------------------------- /publish/resources/css/module.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/css/module.esm.js -------------------------------------------------------------------------------- /publish/resources/css/tailwind/_base.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | -------------------------------------------------------------------------------- /publish/resources/css/tailwind/_components.css: -------------------------------------------------------------------------------- 1 | @tailwind components; 2 | -------------------------------------------------------------------------------- /publish/resources/css/tailwind/_utilities.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /publish/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/js/app.js -------------------------------------------------------------------------------- /publish/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/js/bootstrap.js -------------------------------------------------------------------------------- /publish/resources/js/choices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/js/choices.scss -------------------------------------------------------------------------------- /publish/resources/js/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/js/ssr.js -------------------------------------------------------------------------------- /publish/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /publish/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/tailwind.config.js -------------------------------------------------------------------------------- /publish/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/publish/vite.config.js -------------------------------------------------------------------------------- /resources/css/_checkbox-radio-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/_checkbox-radio-switch.css -------------------------------------------------------------------------------- /resources/css/_progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/_progress.css -------------------------------------------------------------------------------- /resources/css/_scrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/_scrollbars.css -------------------------------------------------------------------------------- /resources/css/_table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/_table.css -------------------------------------------------------------------------------- /resources/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/main.css -------------------------------------------------------------------------------- /resources/css/module.esm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/module.esm.css -------------------------------------------------------------------------------- /resources/css/module.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/css/module.esm.js -------------------------------------------------------------------------------- /resources/css/tailwind/_base.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | -------------------------------------------------------------------------------- /resources/css/tailwind/_components.css: -------------------------------------------------------------------------------- 1 | @tailwind components; 2 | -------------------------------------------------------------------------------- /resources/css/tailwind/_utilities.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /resources/js/components/TomatoArtisan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoArtisan.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoClipboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoClipboard.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoCode.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoColor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoColor.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoDraggable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoDraggable.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoItems.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoRepeater.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoRepeater.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoRich.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoRich.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoSearch.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoSelect.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoSlider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoSlider.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoTable.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoTel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoTel.vue -------------------------------------------------------------------------------- /resources/js/components/TomatoTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/TomatoTooltip.vue -------------------------------------------------------------------------------- /resources/js/components/components/CommandCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/CommandCard.vue -------------------------------------------------------------------------------- /resources/js/components/components/CommandCard/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/CommandCard/Badge.vue -------------------------------------------------------------------------------- /resources/js/components/components/CommandOutput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/CommandOutput.vue -------------------------------------------------------------------------------- /resources/js/components/components/CommandSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/CommandSidebar.vue -------------------------------------------------------------------------------- /resources/js/components/components/Group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/Group.vue -------------------------------------------------------------------------------- /resources/js/components/components/Sidebar/ArgumentInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/Sidebar/ArgumentInput.vue -------------------------------------------------------------------------------- /resources/js/components/components/Sidebar/OptionInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/Sidebar/OptionInput.vue -------------------------------------------------------------------------------- /resources/js/components/components/TopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/js/components/components/TopBar.vue -------------------------------------------------------------------------------- /resources/lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/lang/ar.json -------------------------------------------------------------------------------- /resources/lang/ar/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/lang/ar/global.php -------------------------------------------------------------------------------- /resources/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/lang/en.json -------------------------------------------------------------------------------- /resources/lang/en/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/lang/en/global.php -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/markdown/policy.md -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/markdown/terms.md -------------------------------------------------------------------------------- /resources/views/api/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/api/edit.blade.php -------------------------------------------------------------------------------- /resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/action-buttons.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/action-buttons.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/clipboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/clipboard.blade.php -------------------------------------------------------------------------------- /resources/views/components/code.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/code.blade.php -------------------------------------------------------------------------------- /resources/views/components/color.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/color.blade.php -------------------------------------------------------------------------------- /resources/views/components/container.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/container.blade.php -------------------------------------------------------------------------------- /resources/views/components/draggable.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/draggable.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/dropdown-item.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/icon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/icon.blade.php -------------------------------------------------------------------------------- /resources/views/components/items.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/items.blade.php -------------------------------------------------------------------------------- /resources/views/components/markdown-editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/markdown-editor.blade.php -------------------------------------------------------------------------------- /resources/views/components/markdown-viewer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/markdown-viewer.blade.php -------------------------------------------------------------------------------- /resources/views/components/menu-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/menu-group.blade.php -------------------------------------------------------------------------------- /resources/views/components/menu-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/menu-item.blade.php -------------------------------------------------------------------------------- /resources/views/components/pagination.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/pagination.blade.php -------------------------------------------------------------------------------- /resources/views/components/profile-dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/profile-dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/relations-group.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/relations-group.blade.php -------------------------------------------------------------------------------- /resources/views/components/relations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/relations.blade.php -------------------------------------------------------------------------------- /resources/views/components/repeater.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/repeater.blade.php -------------------------------------------------------------------------------- /resources/views/components/rich.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/rich.blade.php -------------------------------------------------------------------------------- /resources/views/components/row.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/row.blade.php -------------------------------------------------------------------------------- /resources/views/components/search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/search.blade.php -------------------------------------------------------------------------------- /resources/views/components/select.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/select.blade.php -------------------------------------------------------------------------------- /resources/views/components/slider-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/slider-item.blade.php -------------------------------------------------------------------------------- /resources/views/components/slider.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/slider.blade.php -------------------------------------------------------------------------------- /resources/views/components/submit-buttons.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/submit-buttons.blade.php -------------------------------------------------------------------------------- /resources/views/components/submit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/submit.blade.php -------------------------------------------------------------------------------- /resources/views/components/table-action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/table-action.blade.php -------------------------------------------------------------------------------- /resources/views/components/tel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/tel.blade.php -------------------------------------------------------------------------------- /resources/views/components/tooltip.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/tooltip.blade.php -------------------------------------------------------------------------------- /resources/views/components/widget.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/components/widget.blade.php -------------------------------------------------------------------------------- /resources/views/emails/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/emails/team-invitation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/includes/aside.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/includes/aside.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/includes/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/includes/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/includes/menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/includes/menu.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/includes/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/layouts/includes/nav.blade.php -------------------------------------------------------------------------------- /resources/views/pages/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/pages/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/pages/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/pages/policy.blade.php -------------------------------------------------------------------------------- /resources/views/pages/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/pages/terms.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/partials/delete-user-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/partials/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/partials/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/partials/update-password-form.blade.php -------------------------------------------------------------------------------- /resources/views/profile/partials/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/profile/partials/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/add-team-member.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/add-team-member.blade.php -------------------------------------------------------------------------------- /resources/views/teams/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/create.blade.php -------------------------------------------------------------------------------- /resources/views/teams/delete-team-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/delete-team-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/manage-team-members.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/manage-team-members.blade.php -------------------------------------------------------------------------------- /resources/views/teams/member-role-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/member-role-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/show.blade.php -------------------------------------------------------------------------------- /resources/views/teams/team-member-invitations.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/team-member-invitations.blade.php -------------------------------------------------------------------------------- /resources/views/teams/team-member-role-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/team-member-role-form.blade.php -------------------------------------------------------------------------------- /resources/views/teams/update-team-name-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/resources/views/teams/update-team-name-form.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /src/Actions/Fortify/CreateNewUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/CreateNewUserWithTeams.php -------------------------------------------------------------------------------- /src/Actions/Fortify/PasswordValidationRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/PasswordValidationRules.php -------------------------------------------------------------------------------- /src/Actions/Fortify/ResetUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/ResetUserPassword.php -------------------------------------------------------------------------------- /src/Actions/Fortify/UpdateUserPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/UpdateUserPassword.php -------------------------------------------------------------------------------- /src/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/AddTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/AddTeamMember.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/CreateTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/CreateTeam.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/DeleteTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/DeleteTeam.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/DeleteUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/DeleteUserWithTeams.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/InviteTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/InviteTeamMember.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/RemoveTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/RemoveTeamMember.php -------------------------------------------------------------------------------- /src/Actions/Jetstream/UpdateTeamName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Actions/Jetstream/UpdateTeamName.php -------------------------------------------------------------------------------- /src/Console/TomatoAdminInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Console/TomatoAdminInstall.php -------------------------------------------------------------------------------- /src/Console/TomatoAdminUpgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Console/TomatoAdminUpgrade.php -------------------------------------------------------------------------------- /src/Console/TomatoAdminUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Console/TomatoAdminUser.php -------------------------------------------------------------------------------- /src/Facade/Tomato.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Facade/Tomato.php -------------------------------------------------------------------------------- /src/Facade/TomatoMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Facade/TomatoMenu.php -------------------------------------------------------------------------------- /src/Facade/TomatoSlot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Facade/TomatoSlot.php -------------------------------------------------------------------------------- /src/Facade/TomatoWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Facade/TomatoWidget.php -------------------------------------------------------------------------------- /src/Helpers/ApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Helpers/ApiResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/ApiTokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/ApiTokenController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Concerns/ConfirmsTwoFactorAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Concerns/ConfirmsTwoFactorAuthentication.php -------------------------------------------------------------------------------- /src/Http/Controllers/CurrentTeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/CurrentTeamController.php -------------------------------------------------------------------------------- /src/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /src/Http/Controllers/OtherBrowserSessionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/OtherBrowserSessionsController.php -------------------------------------------------------------------------------- /src/Http/Controllers/PrivacyPolicyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/PrivacyPolicyController.php -------------------------------------------------------------------------------- /src/Http/Controllers/ProfilePhotoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/ProfilePhotoController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/FailedPasswordConfirmationResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/FailedPasswordConfirmationResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/LoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/LoginResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/LogoutResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/LogoutResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/PasswordConfirmedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/PasswordConfirmedResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/PasswordResetResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/PasswordResetResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/PasswordUpdateResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/PasswordUpdateResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/ProfileInformationUpdatedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/ProfileInformationUpdatedResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/RecoveryCodesGeneratedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/RecoveryCodesGeneratedResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/RegisterResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/RegisterResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/SuccessfulPasswordResetLinkRequestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/SuccessfulPasswordResetLinkRequestResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/TwoFactorConfirmedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/TwoFactorConfirmedResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/TwoFactorDisabledResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/TwoFactorDisabledResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/TwoFactorEnabledResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/TwoFactorEnabledResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/TwoFactorLoginResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/TwoFactorLoginResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/Responses/VerifyEmailResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/Responses/VerifyEmailResponse.php -------------------------------------------------------------------------------- /src/Http/Controllers/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/TeamController.php -------------------------------------------------------------------------------- /src/Http/Controllers/TeamInvitationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/TeamInvitationController.php -------------------------------------------------------------------------------- /src/Http/Controllers/TeamMemberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/TeamMemberController.php -------------------------------------------------------------------------------- /src/Http/Controllers/TermsOfServiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/TermsOfServiceController.php -------------------------------------------------------------------------------- /src/Http/Controllers/UserProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Controllers/UserProfileController.php -------------------------------------------------------------------------------- /src/Http/Middleware/LanguageSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Http/Middleware/LanguageSwitcher.php -------------------------------------------------------------------------------- /src/Interfaces/TomatoBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Interfaces/TomatoBase.php -------------------------------------------------------------------------------- /src/Interfaces/TomatoMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Interfaces/TomatoMenu.php -------------------------------------------------------------------------------- /src/Models/Membership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Models/Membership.php -------------------------------------------------------------------------------- /src/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Models/Team.php -------------------------------------------------------------------------------- /src/Models/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Models/TeamInvitation.php -------------------------------------------------------------------------------- /src/Policies/TeamPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Policies/TeamPolicy.php -------------------------------------------------------------------------------- /src/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/FortifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Providers/FortifyServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /src/Providers/JetstreamWithTeamsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Providers/JetstreamWithTeamsServiceProvider.php -------------------------------------------------------------------------------- /src/Services/Contracts/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/Contracts/Menu.php -------------------------------------------------------------------------------- /src/Services/Contracts/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/Contracts/Widget.php -------------------------------------------------------------------------------- /src/Services/TeamSubscriptionOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TeamSubscriptionOptions.php -------------------------------------------------------------------------------- /src/Services/TomatoMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoMenu.php -------------------------------------------------------------------------------- /src/Services/TomatoMenuHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoMenuHandler.php -------------------------------------------------------------------------------- /src/Services/TomatoRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoRequests.php -------------------------------------------------------------------------------- /src/Services/TomatoResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoResponse.php -------------------------------------------------------------------------------- /src/Services/TomatoSlots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoSlots.php -------------------------------------------------------------------------------- /src/Services/TomatoWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoWidget.php -------------------------------------------------------------------------------- /src/Services/TomatoWidgetHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Services/TomatoWidgetHandler.php -------------------------------------------------------------------------------- /src/TomatoAdminServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/TomatoAdminServiceProvider.php -------------------------------------------------------------------------------- /src/Views/ActionButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/ActionButtons.php -------------------------------------------------------------------------------- /src/Views/ApplicationLogo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/ApplicationLogo.php -------------------------------------------------------------------------------- /src/Views/Aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Aside.php -------------------------------------------------------------------------------- /src/Views/AuthSessionStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/AuthSessionStatus.php -------------------------------------------------------------------------------- /src/Views/Button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Button.php -------------------------------------------------------------------------------- /src/Views/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Code.php -------------------------------------------------------------------------------- /src/Views/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Color.php -------------------------------------------------------------------------------- /src/Views/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Container.php -------------------------------------------------------------------------------- /src/Views/Copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Copy.php -------------------------------------------------------------------------------- /src/Views/Draggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Draggable.php -------------------------------------------------------------------------------- /src/Views/Dropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Dropdown.php -------------------------------------------------------------------------------- /src/Views/DropdownItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/DropdownItem.php -------------------------------------------------------------------------------- /src/Views/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Footer.php -------------------------------------------------------------------------------- /src/Views/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/GuestLayout.php -------------------------------------------------------------------------------- /src/Views/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Icon.php -------------------------------------------------------------------------------- /src/Views/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Items.php -------------------------------------------------------------------------------- /src/Views/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Layout.php -------------------------------------------------------------------------------- /src/Views/MarkdownEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/MarkdownEditor.php -------------------------------------------------------------------------------- /src/Views/MarkdownViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/MarkdownViewer.php -------------------------------------------------------------------------------- /src/Views/MenuGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/MenuGroup.php -------------------------------------------------------------------------------- /src/Views/MenuItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/MenuItem.php -------------------------------------------------------------------------------- /src/Views/Navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Navbar.php -------------------------------------------------------------------------------- /src/Views/ProfileDropdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/ProfileDropdown.php -------------------------------------------------------------------------------- /src/Views/Relations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Relations.php -------------------------------------------------------------------------------- /src/Views/RelationsGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/RelationsGroup.php -------------------------------------------------------------------------------- /src/Views/Repeater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Repeater.php -------------------------------------------------------------------------------- /src/Views/Rich.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Rich.php -------------------------------------------------------------------------------- /src/Views/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Row.php -------------------------------------------------------------------------------- /src/Views/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Search.php -------------------------------------------------------------------------------- /src/Views/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Select.php -------------------------------------------------------------------------------- /src/Views/Slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Slider.php -------------------------------------------------------------------------------- /src/Views/SliderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/SliderItem.php -------------------------------------------------------------------------------- /src/Views/Submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Submit.php -------------------------------------------------------------------------------- /src/Views/SubmitButtons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/SubmitButtons.php -------------------------------------------------------------------------------- /src/Views/TableAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/TableAction.php -------------------------------------------------------------------------------- /src/Views/Tel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Tel.php -------------------------------------------------------------------------------- /src/Views/Tooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Tooltip.php -------------------------------------------------------------------------------- /src/Views/Widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomatophp/tomato-admin/HEAD/src/Views/Widget.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------