2015-03-31 20:42:37 +03:00
|
|
|
<?php namespace App\Events;
|
|
|
|
|
|
|
|
|
|
use App\Events\Event;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
2015-10-28 21:22:07 +02:00
|
|
|
class InvoiceInvitationWasEmailed extends Event {
|
2015-03-31 20:42:37 +03:00
|
|
|
|
|
|
|
|
use SerializesModels;
|
2015-10-28 21:22:07 +02:00
|
|
|
|
|
|
|
|
public $invitation;
|
2015-10-29 16:42:05 +02:00
|
|
|
|
2015-03-31 20:42:37 +03:00
|
|
|
/**
|
|
|
|
|
* Create a new event instance.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2015-10-29 16:42:05 +02:00
|
|
|
public function __construct($invitation)
|
2015-03-31 21:50:58 +03:00
|
|
|
{
|
2015-10-28 21:22:07 +02:00
|
|
|
$this->invitation = $invitation;
|
2015-03-31 21:50:58 +03:00
|
|
|
}
|
2015-03-31 20:42:37 +03:00
|
|
|
|
|
|
|
|
}
|