Veranstaltung::get()->sortBy('beginn')]); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { return view ('veranstaltung.create', ['model' => new Veranstaltung()]); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Veranstaltung $veranstaltung * @return \Illuminate\Http\Response */ public function show(Veranstaltung $veranstaltung) { // } /** * Show the form for editing the specified resource. * * @param \App\Veranstaltung $veranstaltung * @return \Illuminate\Http\Response */ public function edit(Veranstaltung $veranstaltung) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Veranstaltung $veranstaltung * @return \Illuminate\Http\Response */ public function update(Request $request, Veranstaltung $veranstaltung) { // } /** * Remove the specified resource from storage. * * @param \App\Veranstaltung $veranstaltung * @return \Illuminate\Http\Response */ public function destroy(Veranstaltung $veranstaltung) { // } }