2020-12-21 02:16:26 +01:00
|
|
|
<?php
|
2021-06-09 16:47:11 +02:00
|
|
|
|
2021-05-12 08:18:32 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-05-12 08:18:32 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-12 08:18:32 +02:00
|
|
|
*/
|
2020-12-21 02:16:26 +01:00
|
|
|
|
|
|
|
namespace App\Mail\Import;
|
|
|
|
|
2021-06-09 16:47:11 +02:00
|
|
|
use App\Models\Company;
|
2021-11-08 23:08:27 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-12-21 02:16:26 +01:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2021-11-08 23:08:27 +01:00
|
|
|
use Illuminate\Support\Facades\App;
|
2020-12-21 02:16:26 +01:00
|
|
|
|
|
|
|
class ImportCompleted extends Mailable
|
|
|
|
{
|
2021-02-11 13:35:46 +01:00
|
|
|
// use Queueable, SerializesModels;
|
2020-12-21 02:16:26 +01:00
|
|
|
|
2021-06-09 16:47:11 +02:00
|
|
|
/** @var Company */
|
|
|
|
public $company;
|
|
|
|
|
2020-12-21 02:16:26 +01:00
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public $data;
|
|
|
|
|
2021-06-09 16:47:11 +02:00
|
|
|
public function __construct(Company $company, $data)
|
2020-12-21 02:16:26 +01:00
|
|
|
{
|
2021-06-09 16:47:11 +02:00
|
|
|
$this->company = $company;
|
|
|
|
|
2020-12-21 02:16:26 +01:00
|
|
|
$this->data = $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the message.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
2021-11-08 23:08:27 +01:00
|
|
|
|
|
|
|
App::forgetInstance('translator');
|
2022-01-15 05:58:33 +01:00
|
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
|
2021-11-08 23:08:27 +01:00
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($this->company->settings));
|
|
|
|
|
2021-06-09 16:47:11 +02:00
|
|
|
$data = array_merge($this->data, [
|
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
'settings' => $this->company->settings,
|
2021-06-12 23:14:28 +02:00
|
|
|
'company' => $this->company,
|
2022-05-12 05:57:41 +02:00
|
|
|
'client_count' => $this->company->clients()->count(),
|
|
|
|
'product_count' => $this->company->products()->count(),
|
|
|
|
'invoice_count' => $this->company->invoices()->count(),
|
|
|
|
'quote_count' => $this->company->quotes()->count(),
|
|
|
|
'credit_count' => $this->company->credits()->count(),
|
|
|
|
'project_count' => $this->company->projects()->count(),
|
|
|
|
'task_count' => $this->company->tasks()->count(),
|
|
|
|
'vendor_count' => $this->company->vendors()->count(),
|
|
|
|
'payment_count' => $this->company->payments()->count(),
|
|
|
|
'recurring_invoice_count' => $this->company->recurring_invoices()->count(),
|
|
|
|
'expense_count' => $this->company->expenses()->count(),
|
|
|
|
'company_gateway_count' => $this->company->company_gateways()->count(),
|
|
|
|
'client_gateway_token_count' => $this->company->client_gateway_tokens()->count(),
|
|
|
|
'tax_rate_count' => $this->company->tax_rates()->count(),
|
|
|
|
'document_count' => $this->company->documents()->count(),
|
|
|
|
|
2021-06-09 16:47:11 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $this
|
|
|
|
->from(config('mail.from.address'), config('mail.from.name'))
|
|
|
|
->view('email.import.completed', $data);
|
2020-12-21 02:16:26 +01:00
|
|
|
}
|
|
|
|
}
|