clrghouz/app/Http/Controllers/HomeController.php

24 lines
291 B
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Domain;
class HomeController extends Controller
{
public function network(Domain $o)
{
return view('domain.view')
->with('o',$o);
}
/**
* System Setup
*
* @note: Protected by Route
*/
public function setup()
{
}
}