@extends('includes.layout') @section('content') @php $result = DB::table('comm_auto_escalation as cu') ->join('comm_action as gm', 'cu.action', '=', 'gm.id') ->select('cu.*', 'gm.*') // Change this to select the specific columns you need ->get(); @endphp

Auto Escalation Configuration

--}} @if(count($result) > 0) @foreach($result as $key => $items) {{-- --}} @endforeach @else @endif
Action Elapse time(excluding weekends) Escalation email {{-- Level II escalation
{{$items->action_name}}  hrs
No data available in table
@endsection