2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
2015-03-31 19:42:37 +02:00
|
|
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class QuoteWasEmailed.
|
2016-07-03 18:11:58 +02:00
|
|
|
*/
|
|
|
|
class QuoteWasEmailed extends Event
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
2015-10-28 20:22:07 +01:00
|
|
|
public $quote;
|
2016-07-03 18:11:58 +02:00
|
|
|
|
2017-04-16 09:06:42 +02:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $notes;
|
|
|
|
|
2016-07-03 18:11:58 +02:00
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @param $quote
|
|
|
|
*/
|
2017-04-16 09:06:42 +02:00
|
|
|
public function __construct($quote, $notes)
|
2015-03-31 20:50:58 +02:00
|
|
|
{
|
2015-10-28 20:22:07 +01:00
|
|
|
$this->quote = $quote;
|
2017-04-16 09:06:42 +02:00
|
|
|
$this->notes = $notes;
|
2015-03-31 20:50:58 +02:00
|
|
|
}
|
2015-03-31 19:42:37 +02:00
|
|
|
}
|