@extends('layouts.admin') @section('page-title') {{__('Manage Deal Stages')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@include('layouts.crm_setup')
@php($i=0) @foreach($pipelines as $key => $pipeline)
    @foreach ($pipeline['stages'] as $stage)
  • {{$stage->name}} @can('edit lead stage') @endcan @if(count($pipeline['stages'])) @can('delete lead stage')
    {!! Form::open(['method' => 'DELETE', 'route' => ['stages.destroy', $stage->id]]) !!} {!! Form::close() !!}
    @endcan @endif
  • @endforeach
@php($i++) @endforeach

{{__('Note')}} : {{__('You can easily change order of deal stage using drag & drop.')}}

@endsection