osb/app/Mail/TrafficMismatch.php

50 lines
917 B
PHP
Raw Normal View History

2020-05-28 05:08:13 +00:00
<?php
namespace App\Mail;
use Carbon\Carbon;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Config;
2020-05-28 05:08:13 +00:00
2022-04-20 06:24:58 +00:00
use App\Models\{Supplier,Site};
2020-05-28 05:08:13 +00:00
class TrafficMismatch extends Mailable
{
use Queueable, SerializesModels;
2022-04-20 06:24:58 +00:00
public Supplier $aso;
public Carbon $date;
2020-05-28 05:08:13 +00:00
/**
* Create a new message instance.
*
* @return void
*/
2022-04-20 06:24:58 +00:00
public function __construct(Supplier $o,Carbon $date)
2020-05-28 05:08:13 +00:00
{
$this->aso = $o;
$this->date = $date;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
Config::set('site',$x=Site::find(1)); // @todo To auto determine;
2020-05-28 05:08:13 +00:00
return $this
->markdown('email.system.broadband_traffic_mismatch')
->subject('Traffic Mismatch for '.$this->date)
->with([
'site'=>$x,
2020-05-28 05:08:13 +00:00
'date'=>$this->date,
'aso'=>$this->aso,
]);
}
}