Initial Web UI inspired by int10h.org

This commit is contained in:
Deon George
2021-06-13 01:14:34 +10:00
parent b94e39c7af
commit d7f3ab4130
15 changed files with 593 additions and 213 deletions

View File

@@ -4,18 +4,10 @@ namespace App\Http\Controllers;
class HomeController extends Controller
{
public function home() {
return view('home');
}
public function network(string $name)
{
return view('networks')
->with('content',$name)
->with('network',$name);
}
public function welcome() {
return view('welcome');
}
}