13 lines
209 B
PHP
13 lines
209 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function network(string $name)
|
|
{
|
|
return view('networks')
|
|
->with('content',$name)
|
|
->with('network',$name);
|
|
}
|
|
} |