├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── Casts └── PhoneCast.php ├── Exceptions ├── PhoneAuthLimitException.php └── PhoneAuthSmsServiceNotFoundException.php ├── Livewire └── PhoneVerification.php ├── Models ├── ConfirmedPhone.php ├── PhoneVerificationCode.php └── Traits │ └── PhoneVerification.php ├── Providers └── PhoneAuthServiceProvider.php ├── Rules └── PhoneNumber.php ├── SmsBox.php ├── SmsServiceExample.php ├── SmsServiceInterface.php ├── config └── phone_auth.php ├── database └── migrations │ └── 2021_02_18_090500_users_phone_auth.php ├── lang ├── en │ └── phone_auth.php └── ru │ └── phone_auth.php └── views └── livewire └── phone-verification.blade.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/composer.json -------------------------------------------------------------------------------- /src/Casts/PhoneCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Casts/PhoneCast.php -------------------------------------------------------------------------------- /src/Exceptions/PhoneAuthLimitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Exceptions/PhoneAuthLimitException.php -------------------------------------------------------------------------------- /src/Exceptions/PhoneAuthSmsServiceNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Exceptions/PhoneAuthSmsServiceNotFoundException.php -------------------------------------------------------------------------------- /src/Livewire/PhoneVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Livewire/PhoneVerification.php -------------------------------------------------------------------------------- /src/Models/ConfirmedPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Models/ConfirmedPhone.php -------------------------------------------------------------------------------- /src/Models/PhoneVerificationCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Models/PhoneVerificationCode.php -------------------------------------------------------------------------------- /src/Models/Traits/PhoneVerification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Models/Traits/PhoneVerification.php -------------------------------------------------------------------------------- /src/Providers/PhoneAuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Providers/PhoneAuthServiceProvider.php -------------------------------------------------------------------------------- /src/Rules/PhoneNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/Rules/PhoneNumber.php -------------------------------------------------------------------------------- /src/SmsBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/SmsBox.php -------------------------------------------------------------------------------- /src/SmsServiceExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/SmsServiceExample.php -------------------------------------------------------------------------------- /src/SmsServiceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/SmsServiceInterface.php -------------------------------------------------------------------------------- /src/config/phone_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/config/phone_auth.php -------------------------------------------------------------------------------- /src/database/migrations/2021_02_18_090500_users_phone_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/database/migrations/2021_02_18_090500_users_phone_auth.php -------------------------------------------------------------------------------- /src/lang/en/phone_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/lang/en/phone_auth.php -------------------------------------------------------------------------------- /src/lang/ru/phone_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/lang/ru/phone_auth.php -------------------------------------------------------------------------------- /src/views/livewire/phone-verification.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lee-to/laravel-livewire-phone-auth/HEAD/src/views/livewire/phone-verification.blade.php --------------------------------------------------------------------------------