Resource and View Updating

This commit is contained in:
chrosey
2017-06-15 00:08:35 +02:00
parent 1deb0f59fc
commit a7414e8d66
6 changed files with 16 additions and 15 deletions
+3 -2
View File
@@ -2,7 +2,7 @@
@section('title', 'Neue Veranstaltung')
@section('content')
<h2 class="display-2">{{ $name }}</h2>
<h2>{{ $name }}</h2>
<hr/>
<dl class="row">
<dt class="col-md-2">
@@ -32,5 +32,6 @@
</dd>
</dl>
<hr/>
<a href="{{ route('veranstaltung.edit', ['id' => $id]) }}">Bearbeiten</a>
<a class="btn btn-link" href="{{ route('veranstaltung.edit', ['id' => $id]) }}">Bearbeiten</a>
<a class="btn btn-link" href="{{ route('veranstaltung.index') }}">Zurück zur Liste</a>
@endsection