12 lines
162 B
PHP
12 lines
162 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class MainController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return $this->render('home');
|
|
}
|
|
}
|