20 lines
1.5 KiB
PHP
20 lines
1.5 KiB
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<section class="content-header"><h1>{{ $project->name }}</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary"><div class="box-header">Competitors</div><div class="box-body">
|
|
<ul>@foreach($project->competitiveProducts as $cp)<li>{{ $cp->competitor_name }} — {{ $cp->product_name }} @if($cp->estimated_price)({{ number_format($cp->estimated_price,2) }})@endif</li>@endforeach</ul>
|
|
{!! Form::open(['url'=>action([\Modules\IndustrialEngineering\Http\Controllers\ResearchProjectController::class,'addCompetitor'],$project->id)]) !!}
|
|
<div class="row"><div class="col-md-3"><input name="competitor_name" class="form-control" placeholder="Competitor" required></div>
|
|
<div class="col-md-3"><input name="product_name" class="form-control" placeholder="Product" required></div>
|
|
<div class="col-md-2"><input name="estimated_price" class="form-control" placeholder="Price" type="number" step="0.01"></div>
|
|
<div class="col-md-2"><button class="btn btn-primary">Add</button></div></div>
|
|
{!! Form::close() !!}
|
|
</div></div>
|
|
<div class="box box-info"><div class="box-header">Benchmarks</div><div class="box-body">
|
|
<table class="table table-condensed"><tr><th>Metric</th><th>Ours</th><th>Theirs</th><th>Delta</th></tr>
|
|
@foreach($project->benchmarks as $b)<tr><td>{{ $b->benchmark_name }}</td><td>{{ $b->our_value }}</td><td>{{ $b->competitor_value }}</td><td>{{ $b->delta_percent }}%</td></tr>@endforeach
|
|
</table></div></div>
|
|
</section>
|
|
@endsection
|