mein-sterntours/resources/views/offer/detail.blade.php

13 lines
576 B
PHP

@extends('layouts.layout-2')
@section('content')
<h4 class="font-weight-bold py-3 mb-4">
{{ __('Angebot') }} {{ $offer->offer_number }} <small
class="text-muted">#{{ $offer->id }}</small>
</h4>
<div class="card p-3">
<p class="mb-0">Status: <span class="badge badge-secondary">{{ $offer->status }}</span></p>
<p class="text-muted small mb-0 mt-2">Detail-Editor, Tabs und Aktionen folgen in B3. Aktuelle
Version: V{{ $offer->currentVersion ? $offer->currentVersion->version_no : '—' }}.</p>
</div>
@endsection