osb/app/Http/Controllers/WelcomeController.php

19 lines
296 B
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Http\Controllers;
class WelcomeController extends Controller
{
2018-06-05 11:13:57 +00:00
public function __construct()
{
$this->middleware('demoMode');
}
2021-06-29 00:37:24 +00:00
public function home() {
return view('welcome.home');
2018-05-20 12:53:14 +00:00
}
public function under_construction() {
abort(499,'Under Construction');
}
}