@extends('layouts.dashboard') @section('header')

{{ __('Pipeline Stages Management') }}

@endsection @section('content')

Pipeline Stages

@can('create', \App\Models\PipelineStage::class) Add Pipeline Stage @endcan
@foreach($pipelineStages as $stage) @endforeach
Name Order Actions
{{ $stage->name }} {{ $stage->order }}
@csrf @method('DELETE')
@endsection