First commit

This commit is contained in:
PovilasKorop
2021-10-17 10:07:19 +03:00
commit 4a3afbafd3
142 changed files with 230700 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers;
class HomeController extends Controller
{
public function index()
{
$pageTitle = 'Homepage';
return view('welcome', compact('pageTitle'));
}
}