17 lines
428 B
PHP
17 lines
428 B
PHP
|
@component('mail::message',['site'=>$site,'heading'=>'Traffic Mismatch: '.$date])
|
||
|
Hi {{ isset($user) ? $user->name.',' : '' }}
|
||
|
|
||
|
The traffic import today, had mismatching records. A request to have those login removed has been generated.
|
||
|
|
||
|
@component('mail::table')
|
||
|
| ID |
|
||
|
| - |
|
||
|
@foreach ($aso->traffic_mismatch($date) as $o)
|
||
|
| {{ $o->service }}
|
||
|
@endforeach
|
||
|
|
||
|
@endcomponent
|
||
|
|
||
|
Thanks,<br>
|
||
|
{{ config('mail.from.name') }}
|
||
|
@endcomponent
|