2020-04-01 14:39:59 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Mail;
|
|
|
|
|
2021-01-31 06:07:45 +01:00
|
|
|
use App\Models\Company;
|
2021-11-10 19:54:59 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-04-01 14:39:59 +02:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2021-11-10 19:54:59 +01:00
|
|
|
use Illuminate\Support\Facades\App;
|
2020-04-01 14:39:59 +02:00
|
|
|
|
|
|
|
class MigrationCompleted extends Mailable
|
|
|
|
{
|
2021-02-11 13:35:46 +01:00
|
|
|
// use Queueable, SerializesModels;
|
2020-04-01 14:39:59 +02:00
|
|
|
|
2021-01-31 06:07:45 +01:00
|
|
|
public $company;
|
|
|
|
|
2021-02-10 02:59:30 +01:00
|
|
|
public $check_data;
|
|
|
|
|
2020-04-01 14:39:59 +02:00
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2021-02-10 04:18:23 +01:00
|
|
|
public function __construct(Company $company, $check_data = '')
|
2020-04-01 14:39:59 +02:00
|
|
|
{
|
2021-01-31 06:07:45 +01:00
|
|
|
$this->company = $company;
|
2021-02-10 02:59:30 +01:00
|
|
|
$this->check_data = $check_data;
|
2020-04-01 14:39:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the message.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
2021-11-10 19:54:59 +01:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
$t->replace(Ninja::transformTranslations($this->company->settings));
|
2021-12-18 22:43:25 +01:00
|
|
|
App::setLocale($this->company->getLocale());
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-01-31 06:07:45 +01:00
|
|
|
$data['settings'] = $this->company->settings;
|
2021-02-10 07:08:16 +01:00
|
|
|
$data['company'] = $this->company->fresh();
|
2021-02-02 06:11:33 +01:00
|
|
|
$data['whitelabel'] = $this->company->account->isPaid() ? true : false;
|
2021-06-26 04:38:56 +02:00
|
|
|
$data['check_data'] = $this->check_data ?: '';
|
2021-06-20 23:09:42 +02:00
|
|
|
$data['logo'] = $this->company->present()->logo();
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-05-21 01:53:05 +02:00
|
|
|
$data = array_merge($data, [
|
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
'settings' => $this->company->settings,
|
|
|
|
'company' => $this->company,
|
|
|
|
'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-02-03 13:29:44 +01:00
|
|
|
$result = $this->from(config('mail.from.address'), config('mail.from.name'))
|
2022-03-04 03:08:18 +01:00
|
|
|
->text('email.import.completed_text', $data)
|
2021-02-03 13:29:44 +01:00
|
|
|
->view('email.import.completed', $data);
|
|
|
|
|
|
|
|
return $result;
|
2020-04-01 14:39:59 +02:00
|
|
|
}
|
|
|
|
}
|