@extends('portal::layouts.customer') @section('title', $inquiry->title) @section('content')

{{ $inquiry->title }}

@lang('assetexchange::lang.back')

@lang('assetexchange::lang.inquiry_lines')

@foreach($inquiry->lines as $line) @endforeach
@lang('assetexchange::lang.title') @lang('assetexchange::lang.description') @lang('assetexchange::lang.condition_grade') @lang('assetexchange::lang.quoted_price')
{{ $line->part_name ?: '—' }} {{ $line->description ?: '—' }} {{ $line->target_condition ?: '—' }} {{ $line->reference_price ? $aexUtil->formatMoney($line->reference_price) : '—' }}
@php($recipient = $inquiry->recipients->first())

@lang('assetexchange::lang.portal_submit_quote')

@if($recipient && $recipient->viewed_at)

@lang('assetexchange::lang.viewed_at'): {{ $aexUtil->formatDateTime($recipient->viewed_at) }}

@endif @if($recipient && $recipient->quoted_price)
@lang('assetexchange::lang.quote_already_submitted')

@lang('assetexchange::lang.quoted_price'): {{ $aexUtil->formatMoney($recipient->quoted_price) }} {{ $recipient->currency }}

@lang('assetexchange::lang.notes'): {{ $recipient->quote_notes ?: '—' }}

@else
@csrf
@endif
@endsection