No Application Encryption Key Has Been Specified

From Encryption – Laravel – The PHP Framework For Web Artisans: “Before using Laravel’s encrypter, you must set a key option in your config/app.php configuration file. You should use the php artisan key:generate command to generate this key” I found that using this complex internet query in google.com: “laravel add encrption key” (Yes, it worked even with the … Read more

How to listen messageSent event in laravel 5.5

You can pass data from the controller to the mailable, and then from the mailable to the listener For example I have a model called SendOrder that I use to keep track the status of the email, so I pass this model from the controller to the listener This is what you have to do from scratch … Read more

tech