@php use App\Lib\MyHelper; @endphp @extends('layouts.app') @section('title', 'Manage Auto Response') @section('breadcrumb', 'Manage Auto Response') @section('sub-breadcrumb') List @endsection @section('setting.autocrm', 'kt-menu__item--active') @section('content')
@include('layouts.notification') {{-- begin: hint --}}
Manage Auto Response
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 --}}
@if ($autocrm) @foreach ($autocrm as $key => $value) @endforeach @endif
Type CRM Email Push Notification Inbox Action
@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
@endsection @section('custom-script') @endsection