TKK_E32211375/website/monitoring-cabai/app/Http/Controllers/HomeController.php

16 lines
227 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
public function index()
{
return view('home', [
'title' => 'Home',
]);
}
}