Neustrukturierung Customer / Lead / Booking Phase 2

This commit is contained in:
Kevin Adametz 2026-05-28 17:10:37 +02:00
parent 313f0dbf4e
commit 6df9c401af
69 changed files with 3809 additions and 374 deletions

View file

@ -0,0 +1,13 @@
@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