2017-09-14 19:21:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Modules;
|
|
|
|
|
|
2019-11-16 07:21:14 +00:00
|
|
|
use App\Abstracts\Http\Controller;
|
2017-09-14 19:21:00 +00:00
|
|
|
|
|
|
|
|
class Home extends Controller
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Display a listing of the resource.
|
|
|
|
|
*
|
|
|
|
|
* @return Response
|
|
|
|
|
*/
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
2022-06-01 07:15:55 +00:00
|
|
|
return $this->response('modules.home.index');
|
2017-09-14 19:21:00 +00:00
|
|
|
}
|
2021-11-08 11:23:11 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Show the form for viewing the specified resource.
|
|
|
|
|
*
|
|
|
|
|
* @return Response
|
|
|
|
|
*/
|
|
|
|
|
public function show()
|
|
|
|
|
{
|
|
|
|
|
return redirect()->route('apps.home.index');
|
|
|
|
|
}
|
2017-09-14 19:21:00 +00:00
|
|
|
}
|