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