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