Web layout

This commit is contained in:
Deon George
2021-05-03 22:53:40 +10:00
parent bede0a5880
commit 4b960e92d5
41 changed files with 837 additions and 330 deletions

View File

@@ -0,0 +1,21 @@
<?php
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');
}
}