@extends('layouts.app') @section('content')

{{ $project->name }}

Competitors
    @foreach($project->competitiveProducts as $cp)
  • {{ $cp->competitor_name }} — {{ $cp->product_name }} @if($cp->estimated_price)({{ number_format($cp->estimated_price,2) }})@endif
  • @endforeach
{!! Form::open(['url'=>action([\Modules\IndustrialEngineering\Http\Controllers\ResearchProjectController::class,'addCompetitor'],$project->id)]) !!}
{!! Form::close() !!}
Benchmarks
@foreach($project->benchmarks as $b)@endforeach
MetricOursTheirsDelta
{{ $b->benchmark_name }}{{ $b->our_value }}{{ $b->competitor_value }}{{ $b->delta_percent }}%
@endsection