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