Added VeranstaltungenController
This commit is contained in:
parent
32a342e7be
commit
1ce1b3aef6
85
app/Http/Controllers/VeranstaltungController.php
Normal file
85
app/Http/Controllers/VeranstaltungController.php
Normal file
@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Veranstaltung;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class VeranstaltungController extends Controller
|
||||
{
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 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)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
@ -14,3 +14,5 @@
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
Route::resource('veranstaltung','VeranstaltungController');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user