minor changes made to make compatible with code structure

This commit is contained in:
Sevan Nerse
2020-04-15 19:41:01 +03:00
parent 4c988cb373
commit d3e7b863da
7 changed files with 10 additions and 8 deletions

View File

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