Datadimension
Datadimension

Reputation: 1045

NetBeans Laravel View Xdebug

Xdebug working fully on breakpoints in the controller, however when set in the view they are ignored.

What do I need to configure to do this seemingly simply requirement? Obviously to work on Controllers shows it's configured correctly.

I guess its something to do with Laravel caching.

Upvotes: 1

Views: 292

Answers (1)

Ohgodwhy
Ohgodwhy

Reputation: 50797

Look in the storage/framework/views folder, then set your breakpoint in that file. The view that you're looking at is compiled with Blade and not interpreted and therefore x-debug cannot observe breakpoints set in it.

Upvotes: 1

Related Questions