Created
June 20, 2017 13:19
-
-
Save acacha/17201587a98ce1910707cd29ff5d2f10 to your computer and use it in GitHub Desktop.
A helper for checking connection on Laravel.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!function_exists('check_connection')) { | |
/** | |
* Check database connection. | |
* | |
* @param $connection | |
* @return bool | |
*/ | |
function check_connection($connection) | |
{ | |
try { | |
app()->make('db')->connection($connection)->getPdo(); | |
} catch (\Exception $e) { | |
return false; | |
} | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More helpers at https://github.com/acacha/helpers/blob/master/src/helpers.php