@extends('layouts.main') @section('page-title') {{__('Manage Labels')}} @endsection @section('page-action')
@permission('labels create')
@endpermission
@endsection @section('page-breadcrumb') {{__('Setup')}}, {{__('Labels')}} @endsection @section('content')
@include('lead::layouts.system_setup')
@if($pipelines) @endif @if($pipelines)
@php($i=0) @foreach($pipelines as $key => $pipeline)
    @foreach ($pipeline['labels'] as $label)
  • {{$label->name}}
    @permission('labels edit')
    @endpermission @permission('labels delete')
    {!! Form::open(['method' => 'DELETE', 'route' => ['labels.destroy', $label->id]]) !!} {!! Form::close() !!}
    @endif
  • @endforeach
@php($i++) @endforeach
@endif
@endsection