@extends('layouts.admin') @section('page-title') {{__('Manage Pipelines')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@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
@endsection