2019-04-19 10:49:14 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-19 10:49:14 +02:00
|
|
|
|
2019-04-19 11:09:55 +02:00
|
|
|
namespace App\Events\Quote;
|
2019-04-19 10:49:14 +02:00
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
use App\Models\Company;
|
2020-12-09 10:52:08 +01:00
|
|
|
use App\Models\QuoteInvitation;
|
2019-04-19 10:49:14 +02:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class QuoteWasEmailed.
|
|
|
|
*/
|
2019-12-30 22:59:12 +01:00
|
|
|
class QuoteWasEmailed
|
2019-04-19 10:49:14 +02:00
|
|
|
{
|
|
|
|
use SerializesModels;
|
2020-06-30 01:35:17 +02:00
|
|
|
|
2023-04-26 09:11:01 +02:00
|
|
|
public function __construct(public QuoteInvitation $invitation, public Company $company, public array $event_vars, public string $template)
|
2019-04-19 10:49:14 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|