Book Image

Laravel 5.x Cookbook

By : Terry Matula, Alfred Nutile
Book Image

Laravel 5.x Cookbook

By: Terry Matula, Alfred Nutile

Overview of this book

Laravel is a prominent member of a new generation of web frameworks. It is one of the most popular PHP frameworks and is also free and an open source. Laravel 5 is a substantial upgrade with a lot of new toys, at the same time retaining the features that made Laravel wildly successful. It comes with plenty of architectural as well as design-based changes. The book is a blend of numerous recipes that will give you all the necessary tips you need to build an application. It starts with basic installation and configuration tasks and will get you up-and-running in no time. You will learn to create and customize your PHP app and tweak and re-design your existing apps for better performance. You will learn to implement practical recipes to utilize Laravel’s modular structure, the latest method injection, route caching, and interfacing techniques to create responsive modern-day PHP apps that stand on their own against other apps. Efficient testing and deploying techniques will make you more confident with your Laravel skills as you move ahead with this book. Towards the end of the book, you will understand a number of add-ons and new features essential to finalize your application to make it ready for subscriptions. You will be empowered to get your application out to the world.
Table of Contents (17 chapters)
Laravel 5.x Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Setting up e-mail notices


In this recipe, we are going to use the previous work to trigger an event that will send e-mails. E-mails are a slow process sometimes, so I will put them in a queue. In this case, it will be a database queue since it is just local communication. Once we are done, we will see how to send a "nice" looking e-mail.

Getting ready

A base Laravel install will do. I will be working from the previous work, but you can follow along.

How to do it…

  1. First, let's make our queue database tables:

    > php artisan queue:table && php artisan migrate
    
  2. Then, let's set this to sync in our .env file. Make sure that the QUEUE_DRIVER variable in your .env file looks like the example here:

    Queue driver setting in .env

  3. In the .enf file, we will set MAIL to log until we are ready:

  4. Then, we will make the job:

    > php artisan make:job SendFavoritesEmail
    
  5. Let's just add a placeholder there for now, it is app/Jobs/SendFavoritesE-mail.php:

  6. Now, our handler will react to the queue, which I will...