@extends('fo.tpl.layout') @section('content')

My Incidents list



{{ csrf_field() }} @foreach($incidents as $incident) @if ($incident->state!="ARCHIVED") @if ($incident->state=="TO DO") @endif @if($incident->state=="OPENED") @endif @if($incident->state=="IN_PROGRESS") @endif @if($incident->state=="CLOSED") @endif @if($incident->state=="VALID") @endif @if($incident->state=="TREATED") @endif @if($incident->state=="REFUSED") @endif @endif @endforeach
Incident Name Description Priority Deadline State Operations
{{str_limit($incident['incident_name'], $limit = 15, $end = '...') }} {{str_limit($incident['description'], $limit = 25, $end = '...') }} {{$incident->priority->priority_name}} {{ \Carbon\Carbon::parse($incident['deadline'])->format('d/m/Y')}}
{{$incident->state}}
{{$incident->state}}
{{$incident->state}}
{{$incident->state}}
{{$incident->state}}
{{$incident->state}}
{{$incident->state}}
@if ($incident->state=="TREATED") @endif @if ($incident->state=="VALID") @endif
@include('fo.incidents.inc.createincident') @include('fo.incidents.inc.comment') @include('fo.incidents.inc.confirm') @include('fo.incidents.inc.showNotifications') @stop @section('addlibjs') @stop