12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Home extends BaseController
|
|
{
|
|
public function index(): string
|
|
{
|
|
return $this->view('home');
|
|
}
|
|
}
|