// 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.

  1. Run a tiny known-good snippet first.
  2. Check the exit code and stderr output.
  3. Confirm the selected connection and app path.
  4. Run php artisan about in Artisan mode.
  5. For Docker or SSH, run the same command manually in your terminal.
dump('hello from LaraBench');

config('app.name');