14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Channel;
|
|
use Illuminate\View\View;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
public function index(Channel $channel): View
|
|
{
|
|
return view('theme::home');
|
|
}
|
|
}
|