Neustrukturierung Customer / Lead / Booking Phase 2
This commit is contained in:
parent
313f0dbf4e
commit
6df9c401af
69 changed files with 3809 additions and 374 deletions
14
resources/views/offer_template/detail.blade.php
Normal file
14
resources/views/offer_template/detail.blade.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
<h4 class="font-weight-bold py-3 mb-4">
|
||||
@if($id === 'new')
|
||||
{{ __('Neue Vorlage') }}
|
||||
@else
|
||||
{{ __('Vorlage') }}: {{ $template->name }}
|
||||
@endif
|
||||
</h4>
|
||||
<div class="card p-3">
|
||||
<p class="text-muted mb-0">Vorlagen-Editor folgt in C1.</p>
|
||||
</div>
|
||||
@endsection
|
||||
14
resources/views/offer_template/index.blade.php
Normal file
14
resources/views/offer_template/index.blade.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
<h4 class="font-weight-bold py-3 mb-4">{{ __('Angebotsvorlagen') }}</h4>
|
||||
<div class="list-group">
|
||||
@forelse($templates as $t)
|
||||
<a class="list-group-item list-group-item-action"
|
||||
href="{{ route('offer_template_detail', ['id' => $t->id]) }}">{{ $t->name }}</a>
|
||||
@empty
|
||||
<p class="text-muted p-2 mb-0">Noch keine Vorlagen — anlegen in C1.</p>
|
||||
@endforelse
|
||||
</div>
|
||||
<a class="btn btn-primary mt-3" href="{{ route('offer_template_detail', ['id' => 'new']) }}">Neue Vorlage</a>
|
||||
@endsection
|
||||
Loading…
Add table
Add a link
Reference in a new issue