@extends('includes.layout') @section('content') @php $result = DB::table('comm_moderation_autoescalation') ->where('type2', 'upc') ->get(); $result1 = DB::table('comm_moderation_autoescalation') ->where('type2', 'user') ->get(); @endphp

Moderation Auto Escalation Configuration


@foreach($result as $key => $items) @endforeach
UPC Type Elapse time
Level I - Escalation (ASANA)
Elapse time
Level II - Escalation (SLACK)
@if($items->type == 'Premium') crownPremium @else crownFree @endif  days  days

@foreach($result1 as $key => $items) @endforeach
User Type Elapse time
Level I - Escalation (ASANA)
Elapse time
Level II - Escalation (SLACK)
@if($items->type == 'Enterprise') crownEnterprise @elseif($items->type == 'Priority') crownPriority @else crownFree @endif  days  days
@endsection