12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class HomePageController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('web.pages.home.index');
|
|
}
|
|
}
|