e99c22b007
* Emails not sending #795 #722 * Fix for news items not being sent; refactor some events; check for opt-in #722 * Formatting * Remove extra parameter
17 lines
215 B
PHP
17 lines
215 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
use App\Models\News;
|
|
|
|
class NewsAdded extends Event
|
|
{
|
|
public $news;
|
|
|
|
public function __construct(News $news)
|
|
{
|
|
$this->news = $news;
|
|
}
|
|
}
|