Major updates

This commit is contained in:
root
2018-06-11 13:43:21 -04:00
commit a8c090e288
181 changed files with 22768 additions and 0 deletions
.env.example.ftpconfig.gitattributes.gitignore.htaccess.bak
.well-known/acme-challenge
"\\"
app
artisan
bootstrap
composer.jsoncomposer.json.bakcomposer.json.rlbakcomposer.lock
config
database
error_logindex.htmlpackage.jsonphpunit.xml
public
readme.md
resources
robots.txt
routes
server.php
stats
storage
tests
webpack.mix.js

@ -0,0 +1,28 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('home');
}
}