Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1.3 KB

File metadata and controls

27 lines (18 loc) · 1.3 KB

Laravel Mobile Phone Verification Demo

This is a Laravel 9 demo project with verifying the phone number via SMS, after the registration.

The goal was to mimic a similar process as in the official Email Verification feature of Laravel.

Registration process is based on Laravel Breeze.

SMS Sending is performed with Notifications, based on Vonage (ex Nexmo) provider, which is officially supported by Laravel.

Usage

  • Clone the repository with git clone
  • Copy .env.example file to .env and edit database credentials there
  • Run composer install
  • Run php artisan key:generate
  • Run php artisan migrate
  • That's it: launch the main URL and click Register on the top-right

More from Laravel Daily