@extends('layouts.compact_menu') {{-- Page title --}} @section('title') Exception Mapping @parent @stop @section('content')
@include('flash::message')
Exception Mapping
Add New
@foreach($ExceptionMappings as $im) @endforeach
Level Label Fields Action
{{ ($im->level) ? $im->level->label : "" }} {{ $im->label }} @foreach($im->exception_relations as $ir)
{{$ir->board->name}}
swimlanes : {{$ir->swimlane_names}}
stages : {{$ir->stage_names}}
@endforeach
{!! Form::open(['route' => ['exception_mapping.destroy', $im->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}
@endsection