55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use App\Models\Service;
|
|
|
|
class OrderRequestApprove extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $service;
|
|
public $notes;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @param Service $o
|
|
* @param string $notes
|
|
*/
|
|
public function __construct(Service $o,$notes='')
|
|
{
|
|
$this->service = $o;
|
|
$this->notes = $notes;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
switch ($this->service->category)
|
|
{
|
|
case 'ADSL': $subject = sprintf('%s: %s',$this->service->category,$this->service->service_adsl->service_address);
|
|
break;
|
|
|
|
case 'VOIP': $subject = sprintf('%s: %s',$this->service->category,$this->service->service_voip->service_number);
|
|
break;
|
|
|
|
default:
|
|
$subject = 'New Order Request';
|
|
}
|
|
|
|
return $this
|
|
->markdown('email.admin.order.approve')
|
|
->subject($subject)
|
|
->with(['site'=>$this->service->site]);
|
|
}
|
|
} |