@extends('fo.tpl.layout') @section('content')
Incident Name | Incident Description | Priority | Deadline | Impact | State | Operations | |
---|---|---|---|---|---|---|---|
{{str_limit($incident->incident_name, $limit = 25, $end = '...') }} | {{str_limit($incident->description, $limit = 25, $end = '...') }} | {{$incident->priority->priority_name}} | {{ \Carbon\Carbon::parse($incident->deadline)->format('d/m/Y')}} | {{$incident->impact->impact_name}} | @if($incident->state=="TO DO")
{{$incident->state}}
|
@endif
@if($incident->state=="OPENED")
{{$incident->state}}
|
@endif
@if(Auth::user()->isIncidentManager())
@if ($incident->state=="OPENED")
@endif
@if ($incident->state=="TO DO")
@endif
@endif
@endif
@else
@endif
|