@extends('layouts.compact_menu')
{{-- Page title --}}
@section('title')
Swimlane Mapping @parent
@stop
@section('content')
| Label | Fields | Action | ||
|---|---|---|---|---|
| {{ $sm->label }} |
@foreach($sm->swimlane_relations as $sr)
{{$sr->board->name}} : {{$sr->swimlane->name}}
@endforeach
|
{!! Form::open(['route' => ['swimlane_mapping.destroy', $sm->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}
|
||