osb/resources/views/email/admin/order/approve.blade.php

30 lines
785 B
PHP
Raw Normal View History

2018-08-23 05:17:26 +00:00
@component('mail::message',['site'=>$site])
# Please order the following service.
@component('mail::panel')
@component('mail::table')
| Service | Details |
| :---------- | :---------------- |
| Account | {{ $service->account_name }} ({!! $service->account->account_id_url !!}) |
| Service ID | {!! $service->service_id_url !!} |
| Product | {{ $service->product_name }} |
@switch($service->product_category)
2018-08-23 05:17:26 +00:00
@case('ADSL')
| Address | {{ $service->type->service_address }} |
2018-08-23 05:17:26 +00:00
@break;
@case('VOIP')
| Number | {{ $service->type->service_number }} |
2018-08-23 05:17:26 +00:00
| Supplier Details | {{ join(':',$service->order_info) }} |
@break;
@endswitch
@endcomponent
**NOTES:** {{ $notes }}
@endcomponent
Thanks,<br>
{{ config('app.name') }}
@endcomponent