๐ถ๏ธ #Laravel Tip: When testing with #PHPUnit, include phpunit.xml and phpunit.xml.dist files. PHPUnit first tries to use phpunit.xml; if that file doesn't exist, it tries to use phpunit.xml.dist instead.
PHPUnit will use phpunit.xml.dist, but if you want to run a modified set of the tests, they can copy your phpunit.xml.dist file into phpunit.xml and then modify phpunit.xml.
๐ Create a new Laravel app
๐ Install the Breeze package. In my case, I installed the Breeze package with the option of --๐ถ๐ป๐ฒ๐ฟ๐๐ถ๐ฎ
3/8 โจโจ Register a new User โจโจ
๐ Implement the MustVerifyEmail on the User model
๐ Register a new User
๐ The RegisteredUserController::store dispatches the Registered event
๐ Event listener, SendEmailVerificationNotification sends User an email to verify