mein-sterntours/resources/views/offer_template/index.blade.php

14 lines
607 B
PHP

@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