mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:57:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Mail;
 | 
						|
 | 
						|
use App\Models\Company;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Mail\Mailable;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class MigrationCompleted extends Mailable
 | 
						|
{
 | 
						|
    // use Queueable, SerializesModels;
 | 
						|
 | 
						|
    public $company;
 | 
						|
 | 
						|
    public $check_data;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new message instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct(Company $company, $check_data = '')
 | 
						|
    {
 | 
						|
        $this->company = $company;
 | 
						|
        $this->check_data = $check_data;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Build the message.
 | 
						|
     *
 | 
						|
     * @return $this
 | 
						|
     */
 | 
						|
    public function build()
 | 
						|
    {
 | 
						|
        $data['settings'] = $this->company->settings;
 | 
						|
        $data['company'] = $this->company->fresh();
 | 
						|
        $data['whitelabel'] = $this->company->account->isPaid() ? true : false;
 | 
						|
        $data['check_data'] = $this->check_data;
 | 
						|
 | 
						|
        $result = $this->from(config('mail.from.address'), config('mail.from.name'))
 | 
						|
                    ->view('email.import.completed', $data);
 | 
						|
 | 
						|
        if($this->company->invoices->count() >=1)
 | 
						|
            $result->attach($this->company->invoices->first()->pdf_file_path());
 | 
						|
 | 
						|
        return $result;
 | 
						|
    }
 | 
						|
}
 |