Hi,
$di->set(
    'db', 
    function () use ($config) {
        return Factory::load($config->database);
    }
);How can i redirect to the page500 if the connexion to the database failed ?
Can i add redirection here or it's only on models ?
Hi,
$di->set(
    'db', 
    function () use ($config) {
        return Factory::load($config->database);
    }
);How can i redirect to the page500 if the connexion to the database failed ?
Can i add redirection here or it's only on models ?