@include('new_layouts.header')
@include('crm.side-menu')

{{__('Manage Pipelines')}}

@include('layouts.crm_setup')
@foreach ($pipelines as $pipeline) @endforeach
{{__('Pipeline')}} {{__('Action')}}
{{ $pipeline->name }}
@if(count($pipelines) > 1) @can('delete pipeline') {!! Form::open(['method' => 'DELETE', 'route' => ['pipelines.destroy', $pipeline->id]]) !!} {!! Form::close() !!} @endcan @endif @can('edit pipeline') @endcan
@include('new_layouts.footer')