Software developer, author, and host of Full Stack Radio. January 24, 2017 In one of my current projects, I needed to be able to broadcast email announcements to all of the users in the system. Here's what my AnnouncementsController looks like: class AnnouncementsController extends Controller { // ... public function store() { $this->validate(request(), [ 'subject' => 'required', 'message' => 'req