skip to Main Content

Verify email in Laravel 9

I want to do email verification. Actually, it succeeded, but only to the email in the .env file. Why didn't other users receive the email verification link? Model class User extends Authenticatable implements MustVerifyEmail web Auth::routes(['verify' => true]); controller $this->middleware(['auth',…

VIEW QUESTION

dompdf add to attachment Laravel

I wanted to save the pdf file in the laravel rather than download it so it can be attach when creating a mail. Cant seem to find a save function in the documentation. $document = new Dompdf($options); //echo $output; $document->loadHtml($html);…

VIEW QUESTION
Back To Top
Search