コード例 #1
0
ファイル: DemoController.php プロジェクト: tacone/bees
    public function anyIndex()
    {
        try {
            Article::find(1);
        } catch (QueryException $e) {
            return '
         <div style="text-align: center;margin-top: 100px;">
<p><strong>Database error!</strong></p>
<p>&nbsp;</p>

<ol style="text-align: left;width: 300px; display: inline-block;">
    <li>create a database that matches your config files</li>
    <li><a href="/demo/setup">seed the DEMO database</a></li>
</ol>

</div>
            ';
        }
        return \Redirect::action('\\Tacone\\Bees\\Demo\\Controllers\\FormController@anyIndex');
    }