| Server IP : 14.225.216.240 / Your IP : 216.73.217.114 Web Server : nginx/1.20.1 System : Linux localhost.localdomain 5.14.0-596.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jun 27 16:02:33 UTC 2025 x86_64 User : taidh ( 1001) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/pts/app/Module/Admin/Controller/Classification/ |
Upload File : |
<?php
// phpcs:ignore
namespace App\Module\Admin\Controller\Classification;
use App\Module\Admin\Controller\BaseController;
/**
* Classification Base
*
* @category Class
* @package App\Module\Admin\Controller\Classification
* @author Phung, Truong K <truongkimphung1982@gmail.com>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License
* @link https://pts-digital.com/ PTS Digital Technology Co.,Ltd
*/
class ClassificationController extends BaseController
{
/**
* Classification construct
*
* @return void
*/
public function __construct()
{
parent::__construct();
self::$fn = self::$ns . '::classification.';
view()->share('fn', self::$fn);
}
/**
* Classification homepage
*
* @return mixed $redirect
*/
public function index()
{
return redirect()->route('home.index');
}
}