You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
262 B
PHTML
15 lines
262 B
PHTML
4 months ago
|
<?php
|
||
|
|
||
|
namespace App\Controllers;
|
||
|
|
||
|
use App\Controllers\BaseController;
|
||
|
use CodeIgniter\HTTP\ResponseInterface;
|
||
|
|
||
|
class RegularEmployeeController extends BaseController
|
||
|
{
|
||
|
public function index()
|
||
|
{
|
||
|
return redirect()->to(base_url('/login'));
|
||
|
}
|
||
|
}
|