--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/server/src/app/Http/Controllers/WelcomeController.php Mon Jun 15 19:30:32 2015 +0200
@@ -0,0 +1,36 @@
+<?php namespace App\Http\Controllers;
+
+class WelcomeController extends Controller {
+
+ /*
+ |--------------------------------------------------------------------------
+ | Welcome Controller
+ |--------------------------------------------------------------------------
+ |
+ | This controller renders the "marketing page" for the application and
+ | is configured to only allow guests. Like most of the other sample
+ | controllers, you are free to modify or remove it as you desire.
+ |
+ */
+
+ /**
+ * Create a new controller instance.
+ *
+ * @return void
+ */
+ public function __construct()
+ {
+ $this->middleware('guest');
+ }
+
+ /**
+ * Show the application welcome screen to the user.
+ *
+ * @return Response
+ */
+ public function index()
+ {
+ return view('welcome');
+ }
+
+}