@php($i=0)
@foreach($pipelines as $key => $pipeline)
@foreach ($pipeline['labels'] as $label)
-
{{$label->name}}
@can('edit label')
@endcan
@if(count($pipeline['labels']))
@can('delete label')
{!! Form::open(['method' => 'DELETE', 'route' => ['labels.destroy', $label->id]]) !!}
{!! Form::close() !!}
@endcan
@endif
@endforeach
@php($i++)
@endforeach