21 lines
409 B
PHP
21 lines
409 B
PHP
<?php
|
||
|
||
namespace App\Controllers;
|
||
|
||
class Home extends BaseController
|
||
{
|
||
public function index()
|
||
{
|
||
return view('welcome_message');
|
||
}
|
||
|
||
public function startlogin()
|
||
{
|
||
/*Load the URL helper*/
|
||
$this->load->helper('url');
|
||
// return view('welcome_message');
|
||
/*Redirect the user to some internal controller’s method*/
|
||
redirect('dash');
|
||
}
|
||
}
|