please help. I got error CodeIgniter\Database\Exceptions\DatabaseException #8
when trying to connect to database. I use codeigniter 4 and when I tried to connect to database it wont connect and always got that error. I'm not sure why it happens.
this is my code when I called the table
class Komik extends BaseController
{
protected $komikModel;
public function __construct()
{
$this->komikModel = new KomikModel();
}
public function index()
{
$komik = $this->komikModel->findAll();
dd($komik);
return view('komik/index', $data);
}
}
and this is my .env
database.default.hostname = localhost
database.default.database = ci4
database.default.username = root
database.default.password =
database.default.DBDriver = MySQLi
I'm using XAMPP. please help if you know how to fix this.