akaunting/app/Http/Controllers/Modules/My.php

19 lines
297 B
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers\Modules;
2019-11-16 07:21:14 +00:00
use App\Abstracts\Http\Controller;
class My 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.my.index');
}
}