added view for creating Veranstaltung

This commit is contained in:
chrosey
2017-06-11 22:16:29 +02:00
parent 1ce1b3aef6
commit 5e8d1898bc
22 changed files with 24020 additions and 39 deletions
@@ -0,0 +1,8 @@
@extends('layouts.app')
@section('title', 'Veranstaltungen')
@section('content')
@foreach ($veranstaltungen as $v)
<li>{{ $v->name }} | {{ $v->beginn }} </li>
@endforeach
@endsection