0

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

Antonio Carlos Ribeiro
  • 86,191
  • 22
  • 213
  • 204
Eviro
  • 47
  • 1
  • 5

1 Answers1

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