invoiceninja/app/Events/Credit/CreditWasEmailed.php
2020-06-30 09:35:17 +10:00

28 lines
547 B
PHP

<?php
namespace App\Events\Credit;
use App\Models\Credit;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class CreditWasEmailed
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $credit;
public $company;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Credit $credit, $company)
{
$this->credit = $credit;
$this->company = $company;
}
}