akaunting/app/Events/Sale/InvoiceSent.php

23 lines
317 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
2019-12-31 15:49:09 +03:00
namespace App\Events\Sale;
2017-09-14 22:21:00 +03:00
2019-11-16 10:21:14 +03:00
use Illuminate\Queue\SerializesModels;
class InvoiceSent
2017-09-14 22:21:00 +03:00
{
2019-11-16 10:21:14 +03:00
use SerializesModels;
2017-09-14 22:21:00 +03:00
public $invoice;
/**
* Create a new event instance.
*
* @param $invoice
*/
public function __construct($invoice)
{
$this->invoice = $invoice;
}
2018-10-23 18:47:55 +03:00
}