added view for creating Veranstaltung
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
@extends('layouts.app')
|
||||
@section('title', 'Neue Veranstaltung')
|
||||
|
||||
@section('content')
|
||||
<form>
|
||||
<div class="form-group">
|
||||
<label for="title">Veranstaltungsname</label>
|
||||
<input type="text" class="form-control" id="title" aria-describedby="titleHelp" placeholder="Veranstaltungsnamen eingeben">
|
||||
<small id="titleHelp" class="form-text text-muted">Die Bezeichnung der Veranstaltung, welcher in der Übersicht angezeigt wird.</small>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
@endsection
|
||||
@@ -0,0 +1,8 @@
|
||||
@extends('layouts.app')
|
||||
@section('title', 'Veranstaltungen')
|
||||
|
||||
@section('content')
|
||||
@foreach ($veranstaltungen as $v)
|
||||
<li>{{ $v->name }} | {{ $v->beginn }} </li>
|
||||
@endforeach
|
||||
@endsection
|
||||
Reference in New Issue
Block a user