Im building a project in laravel 3 and wondering how you can debug Fluent Query Builder ie. get the error message or the produced SQL in order to see what im doing wrong
Asked
Active
Viewed 290 times
1 Answers
0
If you enable the profiler in Laravel 3 it will show you the executed queries once the page has loaded. You can enable it by setting the profiler
option to true
in application/config/application.php

Jason Lewis
- 18,537
- 4
- 61
- 64
-
Thanks :D Thats quite handy :D – Eviro Jun 01 '13 at 16:03