Added first seeder.

This commit is contained in:
2020-06-08 15:08:46 +02:00
parent 5abeec4ceb
commit bd23d10a9d
16 changed files with 221 additions and 5 deletions
@@ -0,0 +1,12 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class RootController extends Controller
{
public function index() {
return view("index");
}
}