@extends('layouts.app') @section('title', 'Pipelines') @section('content')
Organisation Pipelines @can('tags.manage')Tags@endcan
@foreach ($pipelines as $pipeline) {{ ucfirst($pipeline->type) }}
@foreach ($pipeline->stages as $stage) @endforeach
StageProbabilityStale afterColour
{{ $stage->name }} @if ($stage->is_won)Closes the record as won@endif @if ($stage->is_lost)Closes the record as lost@endif {{ $stage->probability }}% {{ $stage->rotting_days ? $stage->rotting_days.' days' : '—' }} {{ $stage->colour_token }} @if (! $stage->is_won && ! $stage->is_lost)
@csrf @method('DELETE')
@endif
@csrf
@endforeach
Stage colours run cool to warm along the funnel, so a board reads without a legend. New stages are inserted before the won and lost columns, which always sit at the end.
@endsection