FleetCart/Modules/Page/Http/Controllers/HomeController.php

17 lines
278 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Page\Http\Controllers;
class HomeController
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('public.home.index');
}
}