Added Auth

This commit is contained in:
chrosey
2017-06-15 12:47:36 +02:00
parent e6c4eb2009
commit 8b98db74a2
20 changed files with 614 additions and 23 deletions
@@ -0,0 +1,85 @@
<?php
namespace App\Http\Controllers;
use App\Eintragung;
use Illuminate\Http\Request;
class EintragController 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\Eintragung $eintragung
* @return \Illuminate\Http\Response
*/
public function show(Eintragung $eintragung)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Eintragung $eintragung
* @return \Illuminate\Http\Response
*/
public function edit(Eintragung $eintragung)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Eintragung $eintragung
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Eintragung $eintragung)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Eintragung $eintragung
* @return \Illuminate\Http\Response
*/
public function destroy(Eintragung $eintragung)
{
//
}
}