2015-10-28 20:22:07 +01:00
|
|
|
<?php namespace App\Events;
|
|
|
|
|
|
|
|
use App\Events\Event;
|
|
|
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class QuoteInvitationWasApproved extends Event {
|
|
|
|
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
public $quote;
|
2015-12-16 12:49:26 +01:00
|
|
|
public $invoice;
|
2015-10-28 20:22:07 +01:00
|
|
|
public $invitation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2015-12-16 12:49:26 +01:00
|
|
|
public function __construct($quote, $invoice, $invitation)
|
2015-10-28 20:22:07 +01:00
|
|
|
{
|
|
|
|
$this->quote = $quote;
|
2015-12-16 12:49:26 +01:00
|
|
|
$this->invoice = $invoice;
|
2015-10-28 20:22:07 +01:00
|
|
|
$this->invitation = $invitation;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|