https://github.com/allphptricks/laravel-user-registration-with-email-verification
Laravel 10 User Registration with Email Verification
https://github.com/allphptricks/laravel-user-registration-with-email-verification
email-verification laravel laravel10 laravel10x registration-system user-registration
Last synced: about 1 month ago
JSON representation
Laravel 10 User Registration with Email Verification
- Host: GitHub
- URL: https://github.com/allphptricks/laravel-user-registration-with-email-verification
- Owner: allphptricks
- Created: 2023-08-18T13:13:23.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-23T11:36:25.000Z (over 1 year ago)
- Last Synced: 2025-02-16T15:37:08.202Z (3 months ago)
- Topics: email-verification, laravel, laravel10, laravel10x, registration-system, user-registration
- Language: PHP
- Homepage: https://www.allphptricks.com/laravel-user-registration-with-email-verification/
- Size: 83 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 10 Custom User Registration with Email Verification Tutorial
Learn how to develop a Laravel 10 custom user registration with email verification application> The complete tutorial step by step guide is available on my blog. [Laravel 10 Custom User Registration with Email Verification](https://www.allphptricks.com/laravel-user-registration-with-email-verification/)
## Blog
https://www.allphptricks.com/## Installation
Make sure that you have setup the environment properly. You will need minimum PHP 8.1, MySQL/MariaDB, and composer.1. Download the project (or clone using GIT)
2. Copy `.env.example` into `.env` and configure your database and email SMTP credentials
3. Go to the project's root directory using terminal window/command prompt
4. Run `composer install`
5. Set the application key by running `php artisan key:generate --ansi`
6. Run migrations `php artisan migrate`
7. Start local server by executing `php artisan serve`
8. Visit here [http://127.0.0.1:8000/register](http://127.0.0.1:8000/register) to test the application