@include('layouts.notification')
{{-- begin: hint --}}
Merupakan halaman untuk mengatur isi pesan dari auto response untuk email, push notification dan inbox. Anda juga dapat menambahkan informasi dengan variable yang telah disediakan pada menu edit.
{{-- end: hint --}}
Type CRM |
Email |
Push Notification |
Inbox |
Action |
@if ($autocrm)
@foreach ($autocrm as $key => $value)
@if ($value['type'] == 'Order Paid of')
Order Complete
@elseif ($value['type'] == 'Problem Task Enter')
Task Problem
@elseif ($value['type'] == 'Push Task Late Assignment')
(Push) Task Late
@elseif ($value['type'] == 'Inbox Task Late Assignment')
(Inbox) Task Late
@elseif ($value['type'] == 'Order Pending Edit')
Order Changed
@else
{{$value['type']}}
@endif
|
@if ($value['toggle_email'] == 1)
Active
@else
Inactive
@endif
|
@if ($value['toggle_push'] == 1)
Active
@else
Inactive
@endif
|
@if ($value['toggle_inbox'] == 1)
Active
@else
Inactive
@endif
|
|
@endforeach
@endif