Enabled Domain homepage

This commit is contained in:
Deon George
2021-06-14 21:33:18 +10:00
parent a3b4214040
commit 4011b2a82d
13 changed files with 205 additions and 70 deletions

View File

@@ -2,12 +2,13 @@
namespace App\Http\Controllers;
use App\Models\Domain;
class HomeController extends Controller
{
public function network(string $name)
public function network(Domain $o)
{
return view('networks')
->with('content',$name)
->with('network',$name);
return view('domain.view')
->with('o',$o);
}
}