24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
@extends('portal::layouts.customer')
|
|
@section('title', $configuration->ref_no)
|
|
@section('content')
|
|
<section class="content-header"><h1>{{ $configuration->ref_no }} — {{ $configuration->name }}</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary">
|
|
<div class="box-body">
|
|
<p><strong>@lang('portal::lang.status'):</strong> {{ $configuration->status }}</p>
|
|
<p><strong>@lang('sale.total'):</strong> <span class="display_currency" data-currency_symbol="true">{{ $configuration->quoted_price }}</span></p>
|
|
@if($configuration->productPlatform)
|
|
<p><strong>@lang('industrialengineering::lang.product_platform'):</strong> {{ $configuration->productPlatform->name }}</p>
|
|
@endif
|
|
@if(!empty($configuration->selected_options))
|
|
<h4>@lang('industrialengineering::lang.portal_selected_options')</h4>
|
|
<p>{{ implode(', ', $configuration->selected_options) }}</p>
|
|
@endif
|
|
</div>
|
|
<div class="box-footer">
|
|
<a href="{{ route('customer.cpq.index') }}" class="btn btn-default">@lang('messages.back')</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
@endsection
|