mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
39 lines
732 B
PHP
39 lines
732 B
PHP
<?php
|
|
|
|
namespace Crater\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class PaymentPdf extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $data = [];
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
$company = $this->data['company']['name'];
|
|
|
|
return $this->subject("Payment from $company")
|
|
->markdown('emails.send.payment', ['data', $this->data]);
|
|
}
|
|
}
|