├── LICENSE.md ├── README.md ├── composer.json ├── config └── jetstream.php ├── database ├── factories │ ├── TeamFactory.php │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_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 └── seeders │ └── DatabaseSeeder.php ├── routes ├── inertia.php └── livewire.php ├── src ├── Actions │ ├── UpdateTeamMemberRole.php │ └── ValidateTeamDeletion.php ├── Agent.php ├── ConfirmsPasswords.php ├── Console │ └── InstallCommand.php ├── Contracts │ ├── AddsTeamMembers.php │ ├── CreatesTeams.php │ ├── DeletesTeams.php │ ├── DeletesUsers.php │ ├── InvitesTeamMembers.php │ ├── RemovesTeamMembers.php │ └── UpdatesTeamNames.php ├── Events │ ├── AddingTeam.php │ ├── AddingTeamMember.php │ ├── InvitingTeamMember.php │ ├── RemovingTeamMember.php │ ├── TeamCreated.php │ ├── TeamDeleted.php │ ├── TeamEvent.php │ ├── TeamMemberAdded.php │ ├── TeamMemberRemoved.php │ ├── TeamMemberUpdated.php │ └── TeamUpdated.php ├── Features.php ├── HasProfilePhoto.php ├── HasTeams.php ├── Http │ ├── Controllers │ │ ├── CurrentTeamController.php │ │ ├── Inertia │ │ │ ├── ApiTokenController.php │ │ │ ├── Concerns │ │ │ │ └── ConfirmsTwoFactorAuthentication.php │ │ │ ├── CurrentUserController.php │ │ │ ├── OtherBrowserSessionsController.php │ │ │ ├── PrivacyPolicyController.php │ │ │ ├── ProfilePhotoController.php │ │ │ ├── TeamController.php │ │ │ ├── TeamMemberController.php │ │ │ ├── TermsOfServiceController.php │ │ │ └── UserProfileController.php │ │ ├── Livewire │ │ │ ├── ApiTokenController.php │ │ │ ├── PrivacyPolicyController.php │ │ │ ├── TeamController.php │ │ │ ├── TermsOfServiceController.php │ │ │ └── UserProfileController.php │ │ └── TeamInvitationController.php │ ├── Livewire │ │ ├── ApiTokenManager.php │ │ ├── CreateTeamForm.php │ │ ├── DeleteTeamForm.php │ │ ├── DeleteUserForm.php │ │ ├── LogoutOtherBrowserSessionsForm.php │ │ ├── NavigationMenu.php │ │ ├── TeamMemberManager.php │ │ ├── TwoFactorAuthenticationForm.php │ │ ├── UpdatePasswordForm.php │ │ ├── UpdateProfileInformationForm.php │ │ └── UpdateTeamNameForm.php │ └── Middleware │ │ ├── AuthenticateSession.php │ │ └── ShareInertiaData.php ├── InertiaManager.php ├── InteractsWithBanner.php ├── Jetstream.php ├── JetstreamServiceProvider.php ├── Mail │ └── TeamInvitation.php ├── Membership.php ├── OwnerRole.php ├── RedirectsActions.php ├── Role.php ├── Rules │ └── Role.php ├── Team.php └── TeamInvitation.php ├── stubs ├── app │ ├── Actions │ │ ├── Fortify │ │ │ ├── CreateNewUser.php │ │ │ ├── CreateNewUserWithTeams.php │ │ │ └── UpdateUserProfileInformation.php │ │ └── Jetstream │ │ │ ├── AddTeamMember.php │ │ │ ├── CreateTeam.php │ │ │ ├── DeleteTeam.php │ │ │ ├── DeleteUser.php │ │ │ ├── DeleteUserWithTeams.php │ │ │ ├── InviteTeamMember.php │ │ │ ├── RemoveTeamMember.php │ │ │ └── UpdateTeamName.php │ ├── Models │ │ ├── Membership.php │ │ ├── Team.php │ │ ├── TeamInvitation.php │ │ ├── User.php │ │ └── UserWithTeams.php │ ├── Policies │ │ └── TeamPolicy.php │ └── Providers │ │ ├── JetstreamServiceProvider.php │ │ └── JetstreamWithTeamsServiceProvider.php ├── config │ └── jetstream.php ├── inertia │ ├── app │ │ └── Http │ │ │ └── Middleware │ │ │ └── HandleInertiaRequests.php │ ├── jsconfig.json │ ├── postcss.config.js │ ├── resources │ │ ├── js │ │ │ ├── Components │ │ │ │ ├── ActionMessage.vue │ │ │ │ ├── ActionSection.vue │ │ │ │ ├── ApplicationLogo.vue │ │ │ │ ├── ApplicationMark.vue │ │ │ │ ├── AuthenticationCard.vue │ │ │ │ ├── AuthenticationCardLogo.vue │ │ │ │ ├── Banner.vue │ │ │ │ ├── Checkbox.vue │ │ │ │ ├── ConfirmationModal.vue │ │ │ │ ├── ConfirmsPassword.vue │ │ │ │ ├── DangerButton.vue │ │ │ │ ├── DialogModal.vue │ │ │ │ ├── Dropdown.vue │ │ │ │ ├── DropdownLink.vue │ │ │ │ ├── FormSection.vue │ │ │ │ ├── InputError.vue │ │ │ │ ├── InputLabel.vue │ │ │ │ ├── Modal.vue │ │ │ │ ├── NavLink.vue │ │ │ │ ├── PrimaryButton.vue │ │ │ │ ├── ResponsiveNavLink.vue │ │ │ │ ├── SecondaryButton.vue │ │ │ │ ├── SectionBorder.vue │ │ │ │ ├── SectionTitle.vue │ │ │ │ ├── TextInput.vue │ │ │ │ └── Welcome.vue │ │ │ ├── Layouts │ │ │ │ └── AppLayout.vue │ │ │ ├── Pages │ │ │ │ ├── API │ │ │ │ │ ├── Index.vue │ │ │ │ │ └── Partials │ │ │ │ │ │ └── ApiTokenManager.vue │ │ │ │ ├── Auth │ │ │ │ │ ├── ConfirmPassword.vue │ │ │ │ │ ├── ForgotPassword.vue │ │ │ │ │ ├── Login.vue │ │ │ │ │ ├── Register.vue │ │ │ │ │ ├── ResetPassword.vue │ │ │ │ │ ├── TwoFactorChallenge.vue │ │ │ │ │ └── VerifyEmail.vue │ │ │ │ ├── Dashboard.vue │ │ │ │ ├── PrivacyPolicy.vue │ │ │ │ ├── Profile │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── DeleteUserForm.vue │ │ │ │ │ │ ├── LogoutOtherBrowserSessionsForm.vue │ │ │ │ │ │ ├── TwoFactorAuthenticationForm.vue │ │ │ │ │ │ ├── UpdatePasswordForm.vue │ │ │ │ │ │ └── UpdateProfileInformationForm.vue │ │ │ │ │ └── Show.vue │ │ │ │ ├── Teams │ │ │ │ │ ├── Create.vue │ │ │ │ │ ├── Partials │ │ │ │ │ │ ├── CreateTeamForm.vue │ │ │ │ │ │ ├── DeleteTeamForm.vue │ │ │ │ │ │ ├── TeamMemberManager.vue │ │ │ │ │ │ └── UpdateTeamNameForm.vue │ │ │ │ │ └── Show.vue │ │ │ │ ├── TermsOfService.vue │ │ │ │ └── Welcome.vue │ │ │ ├── app.js │ │ │ └── ssr.js │ │ └── views │ │ │ └── app.blade.php │ ├── routes │ │ └── web.php │ ├── tailwind.config.js │ └── vite.config.js ├── livewire │ ├── app │ │ └── View │ │ │ └── Components │ │ │ ├── AppLayout.php │ │ │ └── GuestLayout.php │ ├── postcss.config.js │ ├── resources │ │ └── views │ │ │ ├── api │ │ │ ├── api-token-manager.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-message.blade.php │ │ │ ├── action-section.blade.php │ │ │ ├── application-logo.blade.php │ │ │ ├── application-mark.blade.php │ │ │ ├── authentication-card-logo.blade.php │ │ │ ├── authentication-card.blade.php │ │ │ ├── banner.blade.php │ │ │ ├── button.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── confirmation-modal.blade.php │ │ │ ├── confirms-password.blade.php │ │ │ ├── danger-button.blade.php │ │ │ ├── dialog-modal.blade.php │ │ │ ├── dropdown-link.blade.php │ │ │ ├── dropdown.blade.php │ │ │ ├── form-section.blade.php │ │ │ ├── input-error.blade.php │ │ │ ├── input.blade.php │ │ │ ├── label.blade.php │ │ │ ├── modal.blade.php │ │ │ ├── nav-link.blade.php │ │ │ ├── responsive-nav-link.blade.php │ │ │ ├── secondary-button.blade.php │ │ │ ├── section-border.blade.php │ │ │ ├── section-title.blade.php │ │ │ ├── switchable-team.blade.php │ │ │ ├── validation-errors.blade.php │ │ │ └── welcome.blade.php │ │ │ ├── dashboard.blade.php │ │ │ ├── layouts │ │ │ ├── app.blade.php │ │ │ └── guest.blade.php │ │ │ ├── navigation-menu.blade.php │ │ │ ├── policy.blade.php │ │ │ ├── profile │ │ │ ├── delete-user-form.blade.php │ │ │ ├── logout-other-browser-sessions-form.blade.php │ │ │ ├── show.blade.php │ │ │ ├── two-factor-authentication-form.blade.php │ │ │ ├── update-password-form.blade.php │ │ │ └── update-profile-information-form.blade.php │ │ │ ├── teams │ │ │ ├── create-team-form.blade.php │ │ │ ├── create.blade.php │ │ │ ├── delete-team-form.blade.php │ │ │ ├── show.blade.php │ │ │ ├── team-member-manager.blade.php │ │ │ └── update-team-name-form.blade.php │ │ │ └── terms.blade.php │ ├── tailwind.config.js │ └── vite.config.js ├── pest-tests │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── ExampleUnitTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── Pest.php │ ├── RegistrationTest.php │ ├── inertia │ │ ├── ApiTokenPermissionsTest.php │ │ ├── BrowserSessionsTest.php │ │ ├── CreateApiTokenTest.php │ │ ├── CreateTeamTest.php │ │ ├── DeleteAccountTest.php │ │ ├── DeleteApiTokenTest.php │ │ ├── DeleteTeamTest.php │ │ ├── InviteTeamMemberTest.php │ │ ├── LeaveTeamTest.php │ │ ├── ProfileInformationTest.php │ │ ├── RemoveTeamMemberTest.php │ │ ├── TwoFactorAuthenticationSettingsTest.php │ │ ├── UpdatePasswordTest.php │ │ ├── UpdateTeamMemberRoleTest.php │ │ └── UpdateTeamNameTest.php │ └── livewire │ │ ├── ApiTokenPermissionsTest.php │ │ ├── BrowserSessionsTest.php │ │ ├── CreateApiTokenTest.php │ │ ├── CreateTeamTest.php │ │ ├── DeleteAccountTest.php │ │ ├── DeleteApiTokenTest.php │ │ ├── DeleteTeamTest.php │ │ ├── InviteTeamMemberTest.php │ │ ├── LeaveTeamTest.php │ │ ├── ProfileInformationTest.php │ │ ├── RemoveTeamMemberTest.php │ │ ├── TwoFactorAuthenticationSettingsTest.php │ │ ├── UpdatePasswordTest.php │ │ ├── UpdateTeamMemberRoleTest.php │ │ └── UpdateTeamNameTest.php ├── resources │ ├── css │ │ └── app.css │ ├── markdown │ │ ├── policy.md │ │ └── terms.md │ └── views │ │ └── emails │ │ └── team-invitation.blade.php └── tests │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ ├── RegistrationTest.php │ ├── inertia │ ├── ApiTokenPermissionsTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── CreateTeamTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── DeleteTeamTest.php │ ├── InviteTeamMemberTest.php │ ├── LeaveTeamTest.php │ ├── ProfileInformationTest.php │ ├── RemoveTeamMemberTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ ├── UpdatePasswordTest.php │ ├── UpdateTeamMemberRoleTest.php │ └── UpdateTeamNameTest.php │ └── livewire │ ├── ApiTokenPermissionsTest.php │ ├── BrowserSessionsTest.php │ ├── CreateApiTokenTest.php │ ├── CreateTeamTest.php │ ├── DeleteAccountTest.php │ ├── DeleteApiTokenTest.php │ ├── DeleteTeamTest.php │ ├── InviteTeamMemberTest.php │ ├── LeaveTeamTest.php │ ├── ProfileInformationTest.php │ ├── RemoveTeamMemberTest.php │ ├── TwoFactorAuthenticationSettingsTest.php │ ├── UpdatePasswordTest.php │ ├── UpdateTeamMemberRoleTest.php │ └── UpdateTeamNameTest.php └── testbench.yaml /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/composer.json -------------------------------------------------------------------------------- /config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/config/jetstream.php -------------------------------------------------------------------------------- /database/factories/TeamFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/database/factories/TeamFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_21_100000_create_teams_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/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/laravel/jetstream/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/laravel/jetstream/HEAD/database/migrations/2020_05_21_300000_create_team_invitations_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /routes/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/routes/inertia.php -------------------------------------------------------------------------------- /routes/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/routes/livewire.php -------------------------------------------------------------------------------- /src/Actions/UpdateTeamMemberRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Actions/UpdateTeamMemberRole.php -------------------------------------------------------------------------------- /src/Actions/ValidateTeamDeletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Actions/ValidateTeamDeletion.php -------------------------------------------------------------------------------- /src/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Agent.php -------------------------------------------------------------------------------- /src/ConfirmsPasswords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/ConfirmsPasswords.php -------------------------------------------------------------------------------- /src/Console/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Console/InstallCommand.php -------------------------------------------------------------------------------- /src/Contracts/AddsTeamMembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/AddsTeamMembers.php -------------------------------------------------------------------------------- /src/Contracts/CreatesTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/CreatesTeams.php -------------------------------------------------------------------------------- /src/Contracts/DeletesTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/DeletesTeams.php -------------------------------------------------------------------------------- /src/Contracts/DeletesUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/DeletesUsers.php -------------------------------------------------------------------------------- /src/Contracts/InvitesTeamMembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/InvitesTeamMembers.php -------------------------------------------------------------------------------- /src/Contracts/RemovesTeamMembers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/RemovesTeamMembers.php -------------------------------------------------------------------------------- /src/Contracts/UpdatesTeamNames.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Contracts/UpdatesTeamNames.php -------------------------------------------------------------------------------- /src/Events/AddingTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/AddingTeam.php -------------------------------------------------------------------------------- /src/Events/AddingTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/AddingTeamMember.php -------------------------------------------------------------------------------- /src/Events/InvitingTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/InvitingTeamMember.php -------------------------------------------------------------------------------- /src/Events/RemovingTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/RemovingTeamMember.php -------------------------------------------------------------------------------- /src/Events/TeamCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamCreated.php -------------------------------------------------------------------------------- /src/Events/TeamDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamDeleted.php -------------------------------------------------------------------------------- /src/Events/TeamEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamEvent.php -------------------------------------------------------------------------------- /src/Events/TeamMemberAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamMemberAdded.php -------------------------------------------------------------------------------- /src/Events/TeamMemberRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamMemberRemoved.php -------------------------------------------------------------------------------- /src/Events/TeamMemberUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamMemberUpdated.php -------------------------------------------------------------------------------- /src/Events/TeamUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Events/TeamUpdated.php -------------------------------------------------------------------------------- /src/Features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Features.php -------------------------------------------------------------------------------- /src/HasProfilePhoto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/HasProfilePhoto.php -------------------------------------------------------------------------------- /src/HasTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/HasTeams.php -------------------------------------------------------------------------------- /src/Http/Controllers/CurrentTeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/CurrentTeamController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/ApiTokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/ApiTokenController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/Concerns/ConfirmsTwoFactorAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/Concerns/ConfirmsTwoFactorAuthentication.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/CurrentUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/CurrentUserController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/OtherBrowserSessionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/OtherBrowserSessionsController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/PrivacyPolicyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/PrivacyPolicyController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/ProfilePhotoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/ProfilePhotoController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/TeamController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/TeamMemberController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/TeamMemberController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/TermsOfServiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/TermsOfServiceController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Inertia/UserProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Inertia/UserProfileController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Livewire/ApiTokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Livewire/ApiTokenController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Livewire/PrivacyPolicyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Livewire/PrivacyPolicyController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Livewire/TeamController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Livewire/TeamController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Livewire/TermsOfServiceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Livewire/TermsOfServiceController.php -------------------------------------------------------------------------------- /src/Http/Controllers/Livewire/UserProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/Livewire/UserProfileController.php -------------------------------------------------------------------------------- /src/Http/Controllers/TeamInvitationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Controllers/TeamInvitationController.php -------------------------------------------------------------------------------- /src/Http/Livewire/ApiTokenManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/ApiTokenManager.php -------------------------------------------------------------------------------- /src/Http/Livewire/CreateTeamForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/CreateTeamForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/DeleteTeamForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/DeleteTeamForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/DeleteUserForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/DeleteUserForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/LogoutOtherBrowserSessionsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/LogoutOtherBrowserSessionsForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/NavigationMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/NavigationMenu.php -------------------------------------------------------------------------------- /src/Http/Livewire/TeamMemberManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/TeamMemberManager.php -------------------------------------------------------------------------------- /src/Http/Livewire/TwoFactorAuthenticationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/TwoFactorAuthenticationForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/UpdatePasswordForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/UpdatePasswordForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/UpdateProfileInformationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/UpdateProfileInformationForm.php -------------------------------------------------------------------------------- /src/Http/Livewire/UpdateTeamNameForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Livewire/UpdateTeamNameForm.php -------------------------------------------------------------------------------- /src/Http/Middleware/AuthenticateSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Middleware/AuthenticateSession.php -------------------------------------------------------------------------------- /src/Http/Middleware/ShareInertiaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Http/Middleware/ShareInertiaData.php -------------------------------------------------------------------------------- /src/InertiaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/InertiaManager.php -------------------------------------------------------------------------------- /src/InteractsWithBanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/InteractsWithBanner.php -------------------------------------------------------------------------------- /src/Jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Jetstream.php -------------------------------------------------------------------------------- /src/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /src/Mail/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Mail/TeamInvitation.php -------------------------------------------------------------------------------- /src/Membership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Membership.php -------------------------------------------------------------------------------- /src/OwnerRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/OwnerRole.php -------------------------------------------------------------------------------- /src/RedirectsActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/RedirectsActions.php -------------------------------------------------------------------------------- /src/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Role.php -------------------------------------------------------------------------------- /src/Rules/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Rules/Role.php -------------------------------------------------------------------------------- /src/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/Team.php -------------------------------------------------------------------------------- /src/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/src/TeamInvitation.php -------------------------------------------------------------------------------- /stubs/app/Actions/Fortify/CreateNewUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Fortify/CreateNewUser.php -------------------------------------------------------------------------------- /stubs/app/Actions/Fortify/CreateNewUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Fortify/CreateNewUserWithTeams.php -------------------------------------------------------------------------------- /stubs/app/Actions/Fortify/UpdateUserProfileInformation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Fortify/UpdateUserProfileInformation.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/AddTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/AddTeamMember.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/CreateTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/CreateTeam.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/DeleteTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/DeleteTeam.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/DeleteUser.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/DeleteUserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/DeleteUserWithTeams.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/InviteTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/InviteTeamMember.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/RemoveTeamMember.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/RemoveTeamMember.php -------------------------------------------------------------------------------- /stubs/app/Actions/Jetstream/UpdateTeamName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Actions/Jetstream/UpdateTeamName.php -------------------------------------------------------------------------------- /stubs/app/Models/Membership.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Models/Membership.php -------------------------------------------------------------------------------- /stubs/app/Models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Models/Team.php -------------------------------------------------------------------------------- /stubs/app/Models/TeamInvitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Models/TeamInvitation.php -------------------------------------------------------------------------------- /stubs/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Models/User.php -------------------------------------------------------------------------------- /stubs/app/Models/UserWithTeams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Models/UserWithTeams.php -------------------------------------------------------------------------------- /stubs/app/Policies/TeamPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Policies/TeamPolicy.php -------------------------------------------------------------------------------- /stubs/app/Providers/JetstreamServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Providers/JetstreamServiceProvider.php -------------------------------------------------------------------------------- /stubs/app/Providers/JetstreamWithTeamsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/app/Providers/JetstreamWithTeamsServiceProvider.php -------------------------------------------------------------------------------- /stubs/config/jetstream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/config/jetstream.php -------------------------------------------------------------------------------- /stubs/inertia/app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /stubs/inertia/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/jsconfig.json -------------------------------------------------------------------------------- /stubs/inertia/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/postcss.config.js -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ActionMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ActionMessage.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ActionSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ActionSection.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ApplicationLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ApplicationLogo.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ApplicationMark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ApplicationMark.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/AuthenticationCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/AuthenticationCard.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/AuthenticationCardLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/AuthenticationCardLogo.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/Banner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/Banner.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/Checkbox.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ConfirmationModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ConfirmationModal.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ConfirmsPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ConfirmsPassword.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/DangerButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/DangerButton.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/DialogModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/DialogModal.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/Dropdown.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/DropdownLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/DropdownLink.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/FormSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/FormSection.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/InputError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/InputError.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/InputLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/InputLabel.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/Modal.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/NavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/NavLink.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/PrimaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/PrimaryButton.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/ResponsiveNavLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/ResponsiveNavLink.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/SecondaryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/SecondaryButton.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/SectionBorder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/SectionBorder.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/SectionTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/SectionTitle.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/TextInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/TextInput.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Components/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Components/Welcome.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Layouts/AppLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Layouts/AppLayout.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/API/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/API/Index.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/API/Partials/ApiTokenManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/API/Partials/ApiTokenManager.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/ConfirmPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/ConfirmPassword.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/ForgotPassword.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/Login.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/Register.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/ResetPassword.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/TwoFactorChallenge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/TwoFactorChallenge.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Auth/VerifyEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Auth/VerifyEmail.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Dashboard.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/PrivacyPolicy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/PrivacyPolicy.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Partials/DeleteUserForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Partials/DeleteUserForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Partials/LogoutOtherBrowserSessionsForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Partials/TwoFactorAuthenticationForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Profile/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Profile/Show.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Create.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Partials/CreateTeamForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Partials/CreateTeamForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Partials/DeleteTeamForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Partials/DeleteTeamForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Partials/TeamMemberManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Partials/TeamMemberManager.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Partials/UpdateTeamNameForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Partials/UpdateTeamNameForm.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Teams/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Teams/Show.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/TermsOfService.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/TermsOfService.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/Pages/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/Pages/Welcome.vue -------------------------------------------------------------------------------- /stubs/inertia/resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/app.js -------------------------------------------------------------------------------- /stubs/inertia/resources/js/ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/js/ssr.js -------------------------------------------------------------------------------- /stubs/inertia/resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/resources/views/app.blade.php -------------------------------------------------------------------------------- /stubs/inertia/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/routes/web.php -------------------------------------------------------------------------------- /stubs/inertia/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/tailwind.config.js -------------------------------------------------------------------------------- /stubs/inertia/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/inertia/vite.config.js -------------------------------------------------------------------------------- /stubs/livewire/app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /stubs/livewire/app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /stubs/livewire/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/postcss.config.js -------------------------------------------------------------------------------- /stubs/livewire/resources/views/api/api-token-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/api/api-token-manager.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/api/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/api/index.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/two-factor-challenge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/two-factor-challenge.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/action-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/action-message.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/action-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/action-section.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/application-mark.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/application-mark.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/authentication-card-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/authentication-card-logo.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/authentication-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/authentication-card.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/banner.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/banner.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/checkbox.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/checkbox.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/confirmation-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/confirmation-modal.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/confirms-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/confirms-password.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/danger-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/danger-button.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/dialog-modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/dialog-modal.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/form-section.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/form-section.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/input-error.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/modal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/modal.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/secondary-button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/secondary-button.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/section-border.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/section-title.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/section-title.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/switchable-team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/switchable-team.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/validation-errors.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/components/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/components/welcome.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/navigation-menu.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/navigation-menu.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/policy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/policy.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/delete-user-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/delete-user-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/logout-other-browser-sessions-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/logout-other-browser-sessions-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/show.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/two-factor-authentication-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/two-factor-authentication-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/update-password-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/update-password-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/profile/update-profile-information-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/profile/update-profile-information-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/create-team-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/create-team-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/create.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/delete-team-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/delete-team-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/show.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/team-member-manager.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/team-member-manager.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/teams/update-team-name-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/teams/update-team-name-form.blade.php -------------------------------------------------------------------------------- /stubs/livewire/resources/views/terms.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/resources/views/terms.blade.php -------------------------------------------------------------------------------- /stubs/livewire/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/tailwind.config.js -------------------------------------------------------------------------------- /stubs/livewire/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/livewire/vite.config.js -------------------------------------------------------------------------------- /stubs/pest-tests/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/AuthenticationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/EmailVerificationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/ExampleTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/ExampleUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/ExampleUnitTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/PasswordResetTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/Pest.php -------------------------------------------------------------------------------- /stubs/pest-tests/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/RegistrationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/BrowserSessionsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/CreateApiTokenTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/CreateTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/CreateTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/DeleteAccountTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/DeleteTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/DeleteTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/InviteTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/InviteTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/LeaveTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/LeaveTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/ProfileInformationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/RemoveTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/RemoveTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/UpdatePasswordTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/UpdateTeamMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/UpdateTeamMemberRoleTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/inertia/UpdateTeamNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/inertia/UpdateTeamNameTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/BrowserSessionsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/CreateApiTokenTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/CreateTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/CreateTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/DeleteAccountTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/DeleteTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/DeleteTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/InviteTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/InviteTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/LeaveTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/LeaveTeamTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/ProfileInformationTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/RemoveTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/RemoveTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/UpdatePasswordTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/UpdateTeamMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/UpdateTeamMemberRoleTest.php -------------------------------------------------------------------------------- /stubs/pest-tests/livewire/UpdateTeamNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/pest-tests/livewire/UpdateTeamNameTest.php -------------------------------------------------------------------------------- /stubs/resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/resources/css/app.css -------------------------------------------------------------------------------- /stubs/resources/markdown/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/resources/markdown/policy.md -------------------------------------------------------------------------------- /stubs/resources/markdown/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/resources/markdown/terms.md -------------------------------------------------------------------------------- /stubs/resources/views/emails/team-invitation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/resources/views/emails/team-invitation.blade.php -------------------------------------------------------------------------------- /stubs/tests/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/AuthenticationTest.php -------------------------------------------------------------------------------- /stubs/tests/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/EmailVerificationTest.php -------------------------------------------------------------------------------- /stubs/tests/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /stubs/tests/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/PasswordResetTest.php -------------------------------------------------------------------------------- /stubs/tests/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/RegistrationTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/BrowserSessionsTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/CreateApiTokenTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/CreateTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/CreateTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/DeleteAccountTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/DeleteTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/DeleteTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/InviteTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/InviteTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/LeaveTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/LeaveTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/ProfileInformationTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/RemoveTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/RemoveTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/UpdatePasswordTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/UpdateTeamMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/UpdateTeamMemberRoleTest.php -------------------------------------------------------------------------------- /stubs/tests/inertia/UpdateTeamNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/inertia/UpdateTeamNameTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/ApiTokenPermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/ApiTokenPermissionsTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/BrowserSessionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/BrowserSessionsTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/CreateApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/CreateApiTokenTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/CreateTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/CreateTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/DeleteAccountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/DeleteAccountTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/DeleteApiTokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/DeleteApiTokenTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/DeleteTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/DeleteTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/InviteTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/InviteTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/LeaveTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/LeaveTeamTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/ProfileInformationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/ProfileInformationTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/RemoveTeamMemberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/RemoveTeamMemberTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/TwoFactorAuthenticationSettingsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/TwoFactorAuthenticationSettingsTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/UpdatePasswordTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/UpdatePasswordTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/UpdateTeamMemberRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/UpdateTeamMemberRoleTest.php -------------------------------------------------------------------------------- /stubs/tests/livewire/UpdateTeamNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/stubs/tests/livewire/UpdateTeamNameTest.php -------------------------------------------------------------------------------- /testbench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/jetstream/HEAD/testbench.yaml --------------------------------------------------------------------------------