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
@@ -14,7 +14,7 @@ class VeranstaltungController extends Controller
*/
public function index()
{
//
return view('veranstaltung.index', ['veranstaltungen' => Veranstaltung::get()->sortBy('beginn')]);
}
/**
@@ -24,7 +24,8 @@ class VeranstaltungController extends Controller
*/
public function create()
{
//
return view ('veranstaltung.create', ['model' =>
new Veranstaltung()]);
}
/**