Initial refactoring work

This commit is contained in:
Deon George
2018-05-20 22:53:14 +10:00
parent d6cb505e1c
commit feda44db8a
121 changed files with 6601 additions and 602 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers;
class WelcomeController extends Controller
{
public function index() {
return view('welcome');
}
public function under_construction() {
abort(499,'Under Construction');
}
}