By using Fast Debugger
, you can expedite the process of troubleshooting Laravel code and resolving issues.
First install Fast Debugger
desktop application according to your operating system.
Now you are ready to receive log data from Laravel
projects.
composer require manadinho/fast-debugger
To use Fast Debugger
in your Laravel
project.
fast('FAST DEBUGGER IS WORKING');
To use Fast Debugger
from blade
files.
@fast('FAST DEBUGGER IS WORKING');
Fast Debugger
works only in local environment.- You can also pass multiple arguments.
You can specify flag to identify your specific log by chainig flag()
method.
fast('FAST DEBUGGER IS WORKING')->flag('FLAG TO IDENTIFY');
On log data you can see file name and line number from the fast()
or @fast()
method is called. You can open file in VSCODE
by simply clicking on file name.