处理DB无法连接到laravel?

时间:2017-01-02 09:25:43

标签: php laravel

我想知道是否有一种方法可以在laravel无法连接到数据库时显示自定义视图?我试过谷歌搜索答案,但它确实没有显示任何有用的东西。

我目前得到:

- debug

感谢。

1 个答案:

答案 0 :(得分:3)

app/Exceptions/Handler.php中,转到render方法。您可以添加以下异常检查以处理querypdo异常

    if ($e instanceof \Illuminate\Database\QueryException) {
        dd($e->getMessage());
        //return response()->view('custom_view');
    } elseif ($e instanceof \PDOException) {
        dd($e->getMessage());
        //return response()->view('custom_view');
    }

dd($e->getMessage());替换为您的自定义代码。