@extends('layouts.admin') @section('page-title') {{__('Manage Lead 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['lead_stages'] as $lead_stages)
  • {{$lead_stages->name}} @can('edit lead stage') @endcan @if(count($pipeline['lead_stages'])) @can('delete lead stage')
    {!! Form::open(['method' => 'DELETE', 'route' => ['lead_stages.destroy', $lead_stages->id]]) !!} {!! Form::close() !!}
    @endcan @endif
  • @endforeach
@php($i++) @endforeach

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

@endsection