@extends('layouts.app') @section('title', 'Escalation Matrix: ' . $matrix->name) @section('content')
Back

{{ $matrix->name }}

Escalation Matrix

Edit

Matrix Information

Name
{{ $matrix->name }}
Event Type
{{ ucfirst(str_replace('_', ' ', $matrix->event_type)) }}
@if($matrix->severity_level)
Severity Level
{{ ucfirst($matrix->severity_level) }}
@endif @if($matrix->days_overdue)
Days Overdue
{{ $matrix->days_overdue }} days
@endif
Status
{{ $matrix->is_active ? 'Active' : 'Inactive' }}
@if($matrix->description)
Description
{{ $matrix->description }}
@endif

Details

@if($matrix->defaultAssignee)
Default Assignee
{{ $matrix->defaultAssignee->name }}
@endif @if($matrix->creator)
Created By
{{ $matrix->creator->name }}
@endif
Created Date
{{ $matrix->created_at->format('M d, Y') }}
@endsection