akaunting/app/Events/Sale/InvoiceSent.php
2019-12-31 15:49:09 +03:00

23 lines
317 B
PHP

<?php
namespace App\Events\Sale;
use Illuminate\Queue\SerializesModels;
class InvoiceSent
{
use SerializesModels;
public $invoice;
/**
* Create a new event instance.
*
* @param $invoice
*/
public function __construct($invoice)
{
$this->invoice = $invoice;
}
}