@extends('layouts.master') @section('mainContent')
{{ $estimation->estimation_id }}
@if(Auth::user()->hasPermission('estimations','edit')) @if($final_enable) @endif @endif

@if($estimation->estimate_type == 'sp') Story Point(SP) @endif @if($estimation->estimate_type == 'fp') Function/Feature Point(FP) @endif

    @if($estimation->estimate_type == 'sp')
  • Total SP {{ $totalSp }}
  • Total Efforts (Hrs){{ $totalEffort }}
  • @endif @if($estimation->estimate_type == 'fp')
  • Total Effort {{ !empty($estimationFunctionPoint->total_project_effort) ? $estimationFunctionPoint->total_project_effort : 0 }}
  • Total Project Cost (Hrs)₹{{ !empty($estimationCost->total_cost) ? $estimationCost->total_cost : 0.00 }}
  • @endif
  • Customer name
    {{ $estimation->customer_name }}
  • Opportunity name
    {{ $estimation->opportunity_name }}
  • Project name
    {{ $estimation->project_name }}
  • Project type
    {{ $estimation->projectType->type }}
  • Estimate date
    {{ ConverDate1($estimation->estimate_date) }}
  • Revised date
    {{ !empty($estimation->revised_date) ? ConverDate1($estimation->revised_date) : 'N/A' }}
  • Version
    V{{ $estimation->version }}
@if($estimation->estimate_type == 'sp')
    @if(Auth::user()->hasPermission('estimations','create'))
  • New Story Point
  • @endif
Story ID Dependencies External interfaces UI Interface UI Variations CRUD Operations Technologies Process Complexity Architecture Change Estimation SP Efforts (Hrs) Action
@endif @if($estimation->estimate_type == 'fp') @endif
@endsection @section('customModal') @endsection