@section("title", "BizMan | Software Development")

{{ __('Software Development Pipeline') }}

{{ date('l, d M Y') }}

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{ $totals['planning']['count'] }}

Planning

Rp {{ number_format($totals['planning']['value'], 0, ',', '.') }}

{{ $totals['development']['count'] }}

Development

Rp {{ number_format($totals['development']['value'], 0, ',', '.') }}

{{ $totals['testing']['count'] }}

Testing

Rp {{ number_format($totals['testing']['value'], 0, ',', '.') }}

{{ $totals['completed']['count'] }}

Completed

Rp {{ number_format($totals['completed']['value'], 0, ',', '.') }}

Planning
Development
Testing
Completed

Planning

{{ $pipeline['planning']->count() }}

Total: Rp {{ number_format($totals['planning']['value'], 0, ',', '.') }}

@forelse ($pipeline['planning'] as $project) @include('software-development.partials.project-card', ['project' => $project, 'nextStatus' => 'development']) @empty

No projects in planning

@endforelse

Development

{{ $pipeline['development']->count() }}

Total: Rp {{ number_format($totals['development']['value'], 0, ',', '.') }}

@forelse ($pipeline['development'] as $project) @include('software-development.partials.project-card', ['project' => $project, 'nextStatus' => 'testing']) @empty

No projects in development

@endforelse

Testing

{{ $pipeline['testing']->count() }}

Total: Rp {{ number_format($totals['testing']['value'], 0, ',', '.') }}

@forelse ($pipeline['testing'] as $project) @include('software-development.partials.project-card', ['project' => $project, 'nextStatus' => 'completed']) @empty

No projects in testing

@endforelse

Completed

{{ $pipeline['completed']->count() }}

Total: Rp {{ number_format($totals['completed']['value'], 0, ',', '.') }}

@forelse ($pipeline['completed'] as $project) @include('software-development.partials.project-card', ['project' => $project, 'nextStatus' => null]) @empty

No completed projects

@endforelse
@push('scripts') @endpush @include('software-development.partials.planning-modal')