├── LICENSE.md ├── README.md ├── composer.json ├── src ├── Actions │ ├── TransferTeam.php │ └── ValidateTeamTransfer.php ├── CanBeTransferred.php ├── Console │ └── InstallCommand.php ├── Enums │ └── InstallStack.php ├── Events │ └── TeamTransferred.php ├── Http │ └── Livewire │ │ └── TeamTransferForm.php └── ServiceProvider.php └── stubs ├── pest-tests └── Feature │ └── TransferTeamTest.php ├── resources └── views │ └── teams │ ├── show.blade.php │ └── team-transfer-form.blade.php └── tests └── Feature └── TransferTeamTest.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/composer.json -------------------------------------------------------------------------------- /src/Actions/TransferTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Actions/TransferTeam.php -------------------------------------------------------------------------------- /src/Actions/ValidateTeamTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Actions/ValidateTeamTransfer.php -------------------------------------------------------------------------------- /src/CanBeTransferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/CanBeTransferred.php -------------------------------------------------------------------------------- /src/Console/InstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Console/InstallCommand.php -------------------------------------------------------------------------------- /src/Enums/InstallStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Enums/InstallStack.php -------------------------------------------------------------------------------- /src/Events/TeamTransferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Events/TeamTransferred.php -------------------------------------------------------------------------------- /src/Http/Livewire/TeamTransferForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/Http/Livewire/TeamTransferForm.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /stubs/pest-tests/Feature/TransferTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/stubs/pest-tests/Feature/TransferTeamTest.php -------------------------------------------------------------------------------- /stubs/resources/views/teams/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/stubs/resources/views/teams/show.blade.php -------------------------------------------------------------------------------- /stubs/resources/views/teams/team-transfer-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/stubs/resources/views/teams/team-transfer-form.blade.php -------------------------------------------------------------------------------- /stubs/tests/Feature/TransferTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelbutcher/jetstream-team-transfer/HEAD/stubs/tests/Feature/TransferTeamTest.php --------------------------------------------------------------------------------