Setup live debugger in app.
This commit is contained in:
@@ -90,6 +90,7 @@ return array(
|
|||||||
'Illuminate\Cookie\CookieServiceProvider',
|
'Illuminate\Cookie\CookieServiceProvider',
|
||||||
'Illuminate\Database\DatabaseServiceProvider',
|
'Illuminate\Database\DatabaseServiceProvider',
|
||||||
'Illuminate\Encryption\EncryptionServiceProvider',
|
'Illuminate\Encryption\EncryptionServiceProvider',
|
||||||
|
'Illuminate\Exception\LiveServiceProvider',
|
||||||
'Illuminate\Filesystem\FilesystemServiceProvider',
|
'Illuminate\Filesystem\FilesystemServiceProvider',
|
||||||
'Illuminate\Hashing\HashServiceProvider',
|
'Illuminate\Hashing\HashServiceProvider',
|
||||||
'Illuminate\Html\HtmlServiceProvider',
|
'Illuminate\Html\HtmlServiceProvider',
|
||||||
|
|||||||
@@ -1,3 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
//
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Register Debug Console
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| In the local environment, we will attach the live debugger, which will
|
||||||
|
| allow you to view SQL queries and other logged information as it is
|
||||||
|
| taking place in this application via the "debug" Artisan command.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
App::attachDebugger();
|
||||||
Reference in New Issue
Block a user