21 lines
1.0 KiB
PHP
21 lines
1.0 KiB
PHP
@extends('layouts.app')
|
|
@section('title', $configuration->ref_no)
|
|
@section('content')
|
|
@include('industrialengineering::layouts.nav')
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-header"><h3 class="box-title">{{ $configuration->ref_no }} — {{ $configuration->name }}</h3></div>
|
|
<div class="box-body">
|
|
<p><strong>Status:</strong> {{ $configuration->status }} | <strong>Quoted Price:</strong> {{ $configuration->quoted_price }}</p>
|
|
@if($configuration->status === 'draft')
|
|
<form method="POST" action="{{ action([\Modules\IndustrialEngineering\Http\Controllers\CpqController::class, 'quote'], $configuration->id) }}">@csrf
|
|
<button class="btn btn-success">Mark as Quoted</button>
|
|
</form>
|
|
@endif
|
|
<h4>BOM Snapshot</h4>
|
|
<pre style="max-height:300px;overflow:auto">{{ json_encode($configuration->bom_snapshot, JSON_PRETTY_PRINT) }}</pre>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|