0

I want to use server breakpoints in Zend Studio to debug a Laravel application. However I am unable to find any documentation involving how to set up Zend Studio breakpoints to work with a Laravel application.

The documentation for Zend Studio has information on utilizing breakpoints in the debug process, however this is only to debug individual PHP classes and not applications that utilize a PHP framework.

How can I integrate Zend Studio server breakpoints into my debugging workflow for a Laravel application?

1 Answer 1

0
+50

For laravel theres couple tools that can help you debug your code, such as :

Dump and Die

you can use dd() to debug your code, its a feature that comes with laravel

DebugBar

https://github.com/barryvdh/laravel-debugbar

With this package, you can easily track your application. You can inspect queries, messages, requests, routes, views and so on.

Sign up to request clarification or add additional context in comments.

2 Comments

Thanks for the advice, however I was not looking for additional ways to debug laravel apps. I was looking for how to specifically use Zend Studio breakpoints to analyze/debug Laravel requests.
This was not the answer I was asking for, however it does present good information for debugging Laravel apps, and you were the only one that attempted the answer so I am awarding you the bounty so it isn't wasted.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.