// docs
No output
What to check when a run finishes with no useful output.
No output usually means one of three things: the snippet did not return or dump anything, the project path is wrong, or PHP failed before Laravel could boot.
- Run a tiny known-good snippet first.
- Check the exit code and stderr output.
- Confirm the selected connection and app path.
- Run php artisan about in Artisan mode.
- For Docker or SSH, run the same command manually in your terminal.
dump('hello from LaraBench');
config('app.name');