56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use App\Models\Service;
|
|
|
|
class CancelRequest extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public Service $service;
|
|
public string $notes;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @param Service $o
|
|
* @param string $notes
|
|
*/
|
|
public function __construct(Service $o,string $notes='')
|
|
{
|
|
$this->service = $o;
|
|
$this->notes = $notes;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
switch (get_class($this->service->type)) {
|
|
case 'App\Models\Service\Adsl':
|
|
$subject = sprintf('CANCEL NBN: %s',$this->service->type->service_address);
|
|
break;
|
|
|
|
case 'App\Models\Service\Voip':
|
|
$subject = sprintf('CANCEL VOIP: %s',$this->service->type->service_number);
|
|
break;
|
|
|
|
default:
|
|
$subject = 'Cancel Service Request';
|
|
}
|
|
|
|
return $this
|
|
->markdown('email.admin.service.cancel')
|
|
->subject($subject)
|
|
->with(['site'=>$this->service->site]);
|
|
}
|
|
} |